(svn r11285) -Fix: 'site unsuitable' was always shown instead specified message when trying to build industry ingame (Csaboka)
--- a/src/industry_cmd.cpp Wed Oct 17 14:54:18 2007 +0000
+++ b/src/industry_cmd.cpp Wed Oct 17 15:47:49 2007 +0000
@@ -1633,9 +1633,9 @@
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;