summaryrefslogtreecommitdiff
path: root/newgrf.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2005-10-20 19:44:41 +0000
committerpeter1138 <peter1138@openttd.org>2005-10-20 19:44:41 +0000
commit49c627ba3533d73dda1e3794e3aa8c895e08958f (patch)
tree2a3ee8b962a74453664e4727b3ddef393ae421aa /newgrf.c
parentd7cbd0d4c37bc60dc79f6d3cd4fbddd96b093e18 (diff)
downloadopenttd-49c627ba3533d73dda1e3794e3aa8c895e08958f.tar.xz
(svn r3074) -NewGrf: Fix stupid typo in weight setting.
Diffstat (limited to 'newgrf.c')
-rw-r--r--newgrf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newgrf.c b/newgrf.c
index 65dbb5316..482cc5e57 100644
--- a/newgrf.c
+++ b/newgrf.c
@@ -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);