From a1f2ad880dc3fb49e1184be52ecea5522edea7ae Mon Sep 17 00:00:00 2001 From: frosch Date: Sat, 17 Mar 2012 19:48:26 +0000 Subject: (svn r24040) -Fix [FS#5095]: Improve error messages wrt. the placement restrictions of banks, water towers and toy shops. --- src/industry_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/industry_cmd.cpp') diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index 8a3effbd2..891798424 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -1455,7 +1455,7 @@ static CommandCost CheckIfIndustryIsAllowed(TileIndex tile, int type, const Town } if ((GetIndustrySpec(type)->behaviour & INDUSTRYBEH_ONLY_NEARTOWN) && DistanceMax(t->xy, tile) > 9) { - return_cmd_error(STR_ERROR_SITE_UNSUITABLE); + return_cmd_error(STR_ERROR_CAN_ONLY_BE_BUILT_NEAR_TOWN_CENTER); } return CommandCost(); -- cgit v1.2.3-54-g00ecf