diff options
author | glx <glx@openttd.org> | 2007-10-17 15:47:49 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2007-10-17 15:47:49 +0000 |
commit | 34f8fd2d2b458200f0729546a51942259443a6a7 (patch) | |
tree | dabee47298f55fc1c5fdf56c73b3928991090763 | |
parent | b9572bd083d7ede5e893d3616baa54a2f0aea6e0 (diff) | |
download | openttd-34f8fd2d2b458200f0729546a51942259443a6a7.tar.xz |
(svn r11285) -Fix: 'site unsuitable' was always shown instead specified message when trying to build industry ingame (Csaboka)
-rw-r--r-- | src/industry_cmd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index 7dfb5e38b..28dcd8dc6 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -1633,9 +1633,9 @@ CommandCost CmdBuildIndustry(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) num = indspec->num_table; itt = indspec->table; - + _error_message = STR_0239_SITE_UNSUITABLE; do { - if (--num < 0) return_cmd_error(STR_0239_SITE_UNSUITABLE); + if (--num < 0) return CMD_ERROR; } while (!CheckIfIndustryTilesAreFree(tile, itt[num], num, p1)); if (CreateNewIndustryHelper(tile, p1, flags, indspec, num) == NULL) return CMD_ERROR; |