src/town_cmd.cpp
changeset 10816 481aece78d7e
parent 10811 dec25a80dd3d
child 10817 fa6a5e01b710
equal deleted inserted replaced
10815:ac6d5c4b998f 10816:481aece78d7e
  2191  */
  2191  */
  2192 static void TownActionBuildStatue(Town *t)
  2192 static void TownActionBuildStatue(Town *t)
  2193 {
  2193 {
  2194 	TileIndex tile = t->xy;
  2194 	TileIndex tile = t->xy;
  2195 
  2195 
  2196 	if (CircularTileSearch(tile, 9, SearchTileForStatue, t->index)) {
  2196 	if (CircularTileSearch(&tile, 9, SearchTileForStatue, t->index)) {
  2197 		SetBit(t->statues, _current_player); // Once found and built, "inform" the Town
  2197 		SetBit(t->statues, _current_player); // Once found and built, "inform" the Town
  2198 	}
  2198 	}
  2199 }
  2199 }
  2200 
  2200 
  2201 static void TownActionFundBuildings(Town *t)
  2201 static void TownActionFundBuildings(Town *t)