diff options
author | KUDr <KUDr@openttd.org> | 2006-11-12 01:14:44 +0000 |
---|---|---|
committer | KUDr <KUDr@openttd.org> | 2006-11-12 01:14:44 +0000 |
commit | 8d6fe990feef7feaa62eb0c6df092efb20e5e015 (patch) | |
tree | 81ac7ce1ad4d8c77068bddad394eebdf30002155 /table | |
parent | ff8f301066c98202616a69e2986f1e38b54905df (diff) | |
download | openttd-8d6fe990feef7feaa62eb0c6df092efb20e5e015.tar.xz |
(svn r7133) - Fix: Can't build oil refinery in other climates than temperate.
Diffstat (limited to 'table')
-rw-r--r-- | table/build_industry.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/table/build_industry.h b/table/build_industry.h index 445604057..2bc720a11 100644 --- a/table/build_industry.h +++ b/table/build_industry.h @@ -1129,7 +1129,7 @@ static const IndustrySpec _industry_specs[] = { IT_OIL_RIG, IT_INVALID, IT_INVALID, CHECK_REFINERY, CT_GOODS, 0, CT_INVALID, 0, 5, CT_OIL, CT_INVALID, CT_INVALID, - INDUSTRYLIFE_CLOSABLE, 1 << LT_NORMAL | 1 << LT_HILLY || LT_DESERT, + INDUSTRYLIFE_CLOSABLE, 1 << LT_NORMAL | 1 << LT_HILLY | LT_DESERT, STR_4806_OIL_REFINERY, STR_4833_SUPPLY_PROBLEMS_CAUSE_TO, STR_4835_INCREASES_PRODUCTION, STR_4839_PRODUCTION_DOWN_BY_50), |