diff options
author | belugas <belugas@openttd.org> | 2007-07-04 00:49:03 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2007-07-04 00:49:03 +0000 |
commit | 0805d0b03e4b7a5c57ff03fc913c6f2e360a1dfa (patch) | |
tree | 4bebee336a4d41164369bdbe217ac6c760ba2ce8 | |
parent | 2d31aef2367463dbb0156d516be6e2f094d1081b (diff) | |
download | openttd-0805d0b03e4b7a5c57ff03fc913c6f2e360a1dfa.tar.xz |
(svn r10424) -Fix : Toy shop seems to be working exactly like power stations, water tower and banks, i.e: they require cargo but do nothing with it.
So, make it an INDUSTRYLIFE_BLACK_HOLE, exactly like the above mentioned industries.
Thanks to glx who spotted, and Csaboka who confirmed it could very well be a CS bug.
-rw-r--r-- | src/table/build_industry.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/build_industry.h b/src/table/build_industry.h index 600dfbbb5..406e73abf 100644 --- a/src/table/build_industry.h +++ b/src/table/build_industry.h @@ -1452,7 +1452,7 @@ static const IndustrySpec _origin_industry_specs[NEW_INDUSTRYOFFSET] = { 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, - INDUSTRYLIFE_PROCESSING, 1 << LT_TOYLAND, + INDUSTRYLIFE_BLACK_HOLE, 1 << LT_TOYLAND, INDUSTRYBEH_ONLY_NEARTOWN, STR_4820_TOY_SHOP, STR_482D_NEW_UNDER_CONSTRUCTION, STR_4833_SUPPLY_PROBLEMS_CAUSE_TO, STR_4835_INCREASES_PRODUCTION, STR_4839_PRODUCTION_DOWN_BY_50), |