(svn r11927) -Fix (r11926): unable to place canals in game

This commit is contained in:
2008-01-19 18:24:20 +00:00
parent 4a2f7db99b
commit a580c8d059

View File

@@ -271,7 +271,7 @@ CommandCost CmdBuildCanal(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
if (p1 >= MapSize()) return CMD_ERROR; if (p1 >= MapSize()) return CMD_ERROR;
/* Outside of the editor you can only build canals, not oceans */ /* Outside of the editor you can only build canals, not oceans */
if (p2 == 0 && _game_mode != GM_EDITOR) return CMD_ERROR; if (p2 != 0 && _game_mode != GM_EDITOR) return CMD_ERROR;
x = TileX(tile); x = TileX(tile);
y = TileY(tile); y = TileY(tile);