diff options
author | peter1138 <peter1138@openttd.org> | 2005-10-20 19:44:41 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2005-10-20 19:44:41 +0000 |
commit | 8bf11c2e41dd2af55b6ed28bbf7eb03650335335 (patch) | |
tree | 2a3ee8b962a74453664e4727b3ddef393ae421aa | |
parent | 2b91f55b320256a9653920f0b395879c1012d158 (diff) | |
download | openttd-8bf11c2e41dd2af55b6ed28bbf7eb03650335335.tar.xz |
(svn r3074) -NewGrf: Fix stupid typo in weight setting.
-rw-r--r-- | newgrf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -394,7 +394,7 @@ static bool RailVehicleChangeInfo(uint engine, int numinfo, int prop, byte **buf FOR_EACH_OBJECT { byte weight = grf_load_byte(&buf); - if (weight < 4) { + if (weight > 4) { grfmsg(GMS_NOTICE, "RailVehicleChangeInfo: Nonsensical weight of %d tons, ignoring.", weight << 8); } else { SB(rvi[i].weight, 8, 8, weight); |