change large marker width and height

This commit is contained in:
Dawid Wysokiński 2020-08-01 13:32:58 +02:00
parent ea6b8365cf
commit 785e53d024
2 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 550 KiB

After

Width:  |  Height:  |  Size: 550 KiB

View File

@ -107,8 +107,8 @@ func Generate(cfg Config) error {
}
for _, village := range m.Villages {
if m.Larger {
for y := 1; y <= 2; y++ {
for x := 1; x <= 2; x++ {
for y := 1; y <= 1; y++ {
for x := 1; x <= 1; x++ {
img.Set(village.X+x, village.Y, parsedColor)
img.Set(village.X-x, village.Y, parsedColor)
img.Set(village.X, village.Y+y, parsedColor)