diff options
author | rubidium <rubidium@openttd.org> | 2007-07-17 08:18:57 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-07-17 08:18:57 +0000 |
commit | 549893651c1cfa7697fe1600a6ba8dabeb0e2dde (patch) | |
tree | 0bf8f94b41bf505cd89baec3dbba0074c83be93e /src/table | |
parent | 306c21d6c94ab490cff2e51b8ecff2ab57c780ed (diff) | |
download | openttd-549893651c1cfa7697fe1600a6ba8dabeb0e2dde.tar.xz |
(svn r10604) -Fix [FS#1044] (r9866): some industries produced cargo they should not be producing, which would result in the industry offering invalid cargo to a station resulting in crashes..
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/build_industry.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/table/build_industry.h b/src/table/build_industry.h index 7915754db..233d2b3e6 100644 --- a/src/table/build_industry.h +++ b/src/table/build_industry.h @@ -1312,7 +1312,7 @@ static const IndustrySpec _origin_industry_specs[NEW_INDUSTRYOFFSET] = { 151, 0xA6666666, 0, 3, 3, 0, 0, 6, 5, 0, 15, IT_GOLD_MINE, IT_DIAMOND_MINE, IT_INVALID, CHECK_NOTHING, CT_INVALID, 0, CT_INVALID, 0, 5, - CT_GOLD, 256, CT_INVALID, 0, CT_INVALID, 0, + CT_GOLD, 0, CT_INVALID, 0, CT_INVALID, 0, INDUSTRYLIFE_BLACK_HOLE, 1 << LT_ARCTIC | 1 << LT_TROPIC, INDUSTRYBEH_ONLY_INTOWN, STR_4812_BANK, STR_482D_NEW_UNDER_CONSTRUCTION, @@ -1372,7 +1372,7 @@ static const IndustrySpec _origin_industry_specs[NEW_INDUSTRYOFFSET] = { 115, 0xFFFFFFFF, 0, 0, 4, 0, 0, 0, 8, 0, 208, IT_WATER_SUPPLY, IT_INVALID, IT_INVALID, CHECK_WATER, CT_INVALID, 0, CT_INVALID, 0, 5, - CT_WATER, 256, CT_INVALID, 0, CT_INVALID, 0, + CT_WATER, 0, CT_INVALID, 0, CT_INVALID, 0, INDUSTRYLIFE_BLACK_HOLE, 1 << LT_TROPIC, INDUSTRYBEH_ONLY_INTOWN, STR_4818_WATER_TOWER, STR_482D_NEW_UNDER_CONSTRUCTION, @@ -1452,7 +1452,7 @@ static const IndustrySpec _origin_industry_specs[NEW_INDUSTRYOFFSET] = { 133, 0xFFFFFFFF, 0, 0, 0, 3, 0, 0, 0, 4, 208, IT_TOY_FACTORY, IT_INVALID, IT_INVALID, CHECK_NOTHING, CT_INVALID, 0, CT_INVALID, 0, 5, - CT_TOYS, 256, CT_INVALID, 0, CT_INVALID, 0, + CT_TOYS, 0, CT_INVALID, 0, CT_INVALID, 0, INDUSTRYLIFE_BLACK_HOLE, 1 << LT_TOYLAND, INDUSTRYBEH_ONLY_NEARTOWN, STR_4820_TOY_SHOP, STR_482D_NEW_UNDER_CONSTRUCTION, |