diff options
author | tron <tron@openttd.org> | 2005-02-06 07:49:41 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-02-06 07:49:41 +0000 |
commit | 72b539b05e9fb05e40555ab909c502900af26df6 (patch) | |
tree | c4fa332cdd75e708fd8b47186b7db4121798338d | |
parent | 602954e27f0518bc1cf4f72f99212ac20a3babc7 (diff) | |
download | openttd-72b539b05e9fb05e40555ab909c502900af26df6.tar.xz |
(svn r1812) [1117058] Use CT_WATER instead of CT_STEEL when accounting water which gets delivered to a town (worked because CT_STEEL and CT_WATER share the same enum number)
-rw-r--r-- | economy.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1234,7 +1234,7 @@ static int32 DeliverGoods(int num_pieces, byte cargo_type, uint16 source, uint16 { Town *t = s_to->town; if (cargo_type == CT_FOOD) t->new_act_food += num_pieces; - if (cargo_type == CT_STEEL) t->new_act_water += num_pieces; + if (cargo_type == CT_WATER) t->new_act_water += num_pieces; } // Give the goods to the industry. |