Skip to content

Commit

Permalink
Implement the new overgrown garden graphic
Browse files Browse the repository at this point in the history
  • Loading branch information
Keriew committed Mar 12, 2024
1 parent be1be6f commit 7e3ef88
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/map/tiles.c
Original file line number Diff line number Diff line change
Expand Up @@ -281,9 +281,12 @@ static void set_garden_image(int x, int y, int grid_offset)
case 0: case 1:
image_id += 5;
break;
case 2: case 3:
case 2:
image_id += 4;
break;
case 3:
image_id += 6;
break;
}
}
map_building_tiles_add(0, x, y, 2, image_id, TERRAIN_GARDEN);
Expand Down

0 comments on commit 7e3ef88

Please sign in to comment.