diff options
author | KUDr <kudr@openttd.org> | 2006-11-12 01:28:45 +0000 |
---|---|---|
committer | KUDr <kudr@openttd.org> | 2006-11-12 01:28:45 +0000 |
commit | 9d5befb22ad379e854017b54b7355bc65925535c (patch) | |
tree | 6983496dc43a1d26e4ddcf1fa78ad540b027bf86 | |
parent | 2ac1ba423d1212b5a4f6c7fa3ced70882d40a3aa (diff) | |
download | openttd-9d5befb22ad379e854017b54b7355bc65925535c.tar.xz |
(svn r7134) - Fix (r7133) Still can't build oil refinery in the desert climate (this time i tested it)
-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 2bc720a11..192ef66b6 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 | 1 << LT_DESERT, STR_4806_OIL_REFINERY, STR_4833_SUPPLY_PROBLEMS_CAUSE_TO, STR_4835_INCREASES_PRODUCTION, STR_4839_PRODUCTION_DOWN_BY_50), |