diff options
author | alberth <alberth@openttd.org> | 2010-02-15 10:28:40 +0000 |
---|---|---|
committer | alberth <alberth@openttd.org> | 2010-02-15 10:28:40 +0000 |
commit | 6553f499910bfa2acd71fce94b2995ea6d89e5d3 (patch) | |
tree | 39b56321e1e1d383b3651a09a903f1ec1cd839c3 | |
parent | bb5261a075653b7d4c01d267440b17305284a930 (diff) | |
download | openttd-6553f499910bfa2acd71fce94b2995ea6d89e5d3.tar.xz |
(svn r19137) -Add: Report a more useful error when failing to build a bubble generator.
-rw-r--r-- | src/industry_cmd.cpp | 6 | ||||
-rw-r--r-- | src/lang/english.txt | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index 5ec1d150b..846bb6222 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -1251,7 +1251,11 @@ static bool CheckNewIndustry_Lumbermill(TileIndex tile) */ static bool CheckNewIndustry_BubbleGen(TileIndex tile) { - return GetTileZ(tile) <= TILE_HEIGHT * 4; + if (GetTileZ(tile) > TILE_HEIGHT * 4) { + _error_message = STR_ERROR_CAN_ONLY_BE_BUILT_IN_LOW_AREAS; + return false; + } + return true; } /** Industrytype check function signature. diff --git a/src/lang/english.txt b/src/lang/english.txt index 3f599922d..6b46ebd12 100644 --- a/src/lang/english.txt +++ b/src/lang/english.txt @@ -3386,6 +3386,7 @@ STR_ERROR_CAN_ONLY_BE_BUILT_IN_TOWNS_WITH_POPULATION_OF_1200 :{WHITE}... can STR_ERROR_CAN_ONLY_BE_BUILT_IN_RAINFOREST :{WHITE}... can only be built in rainforest areas STR_ERROR_CAN_ONLY_BE_BUILT_IN_DESERT :{WHITE}... can only be built in desert areas STR_ERROR_CAN_ONLY_BE_BUILT_IN_TOWNS :{WHITE}... can only be built in towns +STR_ERROR_CAN_ONLY_BE_BUILT_IN_LOW_AREAS :{WHITE}... can only be built in low areas STR_ERROR_CAN_ONLY_BE_POSITIONED :{WHITE}... can only be positioned near edges of map STR_ERROR_FOREST_CAN_ONLY_BE_PLANTED :{WHITE}... forest can only be planted above snow-line |