summaryrefslogtreecommitdiff
path: root/src/house.h
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-09-13 13:27:29 +0000
committeryexo <yexo@openttd.org>2010-09-13 13:27:29 +0000
commit2d4c5ea66864e4b53d75decaa14ffafe643aa8ed (patch)
treeeab99373a6254a1ef859828039905d8ebdb6fc51 /src/house.h
parente5a81fbbde4c0e61845250350013334b9ec2f40a (diff)
downloadopenttd-2d4c5ea66864e4b53d75decaa14ffafe643aa8ed.tar.xz
(svn r20797) -Fix: disable houses without a size that are available according to their building flags
Diffstat (limited to 'src/house.h')
-rw-r--r--src/house.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/house.h b/src/house.h
index f99d7df6d..e1ecce25b 100644
--- a/src/house.h
+++ b/src/house.h
@@ -80,7 +80,8 @@ enum HouseZones { ///< Bit Value Meaning
HZ_TEMP = 0x1000, ///< 12 1000 can appear in temperate climate
HZ_SUBARTC_BELOW = 0x2000, ///< 13 2000 can appear in sub-arctic climate below the snow line
HZ_SUBTROPIC = 0x4000, ///< 14 4000 can appear in subtropical climate
- HZ_TOYLND = 0x8000 ///< 15 8000 can appear in toyland climate
+ HZ_TOYLND = 0x8000, ///< 15 8000 can appear in toyland climate
+ HZ_CLIMALL = 0xF800, ///< Bitmask of all climate bits
};
DECLARE_ENUM_AS_BIT_SET(HouseZones)