File diff r27420:b37b70eb3169 → r27421:e8c2cdc1e8e6
src/newgrf_engine.cpp
Show inline comments
 
@@ -964,7 +964,7 @@ static uint32 VehicleGetVariable(Vehicle
 
			case 0x47: { // Vehicle cargo info
 
				const Engine *e = Engine::Get(this->self_type);
 
				CargoID cargo_type = e->GetDefaultCargoType();
 
				if (cargo_type != CT_INVALID) {
 
				if (IsValidCargoID(cargo_type)) {
 
					const CargoSpec *cs = CargoSpec::Get(cargo_type);
 
					return (cs->classes << 16) | (cs->weight << 8) | this->ro.grffile->cargo_map[cargo_type];
 
				} else {