(svn r3074) -NewGrf: Fix stupid typo in weight setting.

This commit is contained in:
peter1138 2005-10-20 19:44:41 +00:00
parent 2b91f55b32
commit 8bf11c2e41
1 changed files with 1 additions and 1 deletions

View File

@ -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);