diff options
author | planetmaker <planetmaker@openttd.org> | 2013-05-06 20:48:18 +0000 |
---|---|---|
committer | planetmaker <planetmaker@openttd.org> | 2013-05-06 20:48:18 +0000 |
commit | a8ba74843439e1ad1157db7621cbd1a5ae10e428 (patch) | |
tree | 5d3f98a9d2544cb8d344f3c45f9126a64586e4f3 /src/water_cmd.cpp | |
parent | 26dd535c6b33c54b4d4218f1c90ddb527239bca4 (diff) | |
download | openttd-a8ba74843439e1ad1157db7621cbd1a5ae10e428.tar.xz |
(svn r25229) -Feature: [NewGRF] Variable 0x82 for canals and rivers (dike map)
Diffstat (limited to 'src/water_cmd.cpp')
-rw-r--r-- | src/water_cmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/water_cmd.cpp b/src/water_cmd.cpp index ccda7fb06..b99741cfe 100644 --- a/src/water_cmd.cpp +++ b/src/water_cmd.cpp @@ -548,7 +548,7 @@ static CommandCost ClearTile_Water(TileIndex tile, DoCommandFlag flags) * @return true iff the tile is water in the view of 'from'. * */ -static bool IsWateredTile(TileIndex tile, Direction from) +bool IsWateredTile(TileIndex tile, Direction from) { switch (GetTileType(tile)) { case MP_WATER: |