mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
(svn r11927) -Fix (r11926): unable to place canals in game
This commit is contained in:
parent
0c6bdb0d21
commit
bb66cf27cc
@ -271,7 +271,7 @@ CommandCost CmdBuildCanal(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
|
||||
if (p1 >= MapSize()) return CMD_ERROR;
|
||||
|
||||
/* 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);
|
||||
y = TileY(tile);
|
||||
|
Loading…
Reference in New Issue
Block a user