diff options
author | peter1138 <peter1138@openttd.org> | 2008-01-19 18:24:20 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2008-01-19 18:24:20 +0000 |
commit | bb66cf27ccffbeb2a73250dc6c348557c07608f8 (patch) | |
tree | 74ee77814fd1b451c582b19d5acca386cfad5892 | |
parent | 0c6bdb0d2151befdab8ad9a989e2283b4f715df1 (diff) | |
download | openttd-bb66cf27ccffbeb2a73250dc6c348557c07608f8.tar.xz |
(svn r11927) -Fix (r11926): unable to place canals in game
-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 cabfc0a91..ac90ef20d 100644 --- a/src/water_cmd.cpp +++ b/src/water_cmd.cpp @@ -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); |