remove unnecessary )

This commit is contained in:
Dawid Wysokiński 2020-06-07 17:29:14 +02:00
parent fcd5cd5455
commit 8ab83c6d13
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ func (v *Village) Continent() string {
if v == nil {
return ""
}
return fmt.Sprintf("k%c%c", strconv.FormatInt(int64(v.Y), 10)[0], strconv.FormatInt(int64(v.y), 10)[0]))
return fmt.Sprintf("k%c%c", strconv.FormatInt(int64(v.Y), 10)[0], strconv.FormatInt(int64(v.X), 10)[0])
}
type VillageFilter struct {