# HG changeset patch # User peter1138 # Date 1129837481 0 # Node ID d1965652e52321a10c91dec1095d6c9143848255 # Parent 50cb52cdeb73d0cadf804abf96c813b9764d71d4 (svn r3074) -NewGrf: Fix stupid typo in weight setting. diff -r 50cb52cdeb73 -r d1965652e523 newgrf.c --- a/newgrf.c Thu Oct 20 17:43:13 2005 +0000 +++ b/newgrf.c Thu Oct 20 19:44:41 2005 +0000 @@ -394,7 +394,7 @@ 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);