diff options
author | rubidium <rubidium@openttd.org> | 2007-10-30 20:31:35 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-10-30 20:31:35 +0000 |
commit | 6cc287c66914c72aaa63cc3caa27d5480399f15b (patch) | |
tree | 0dc9ff56a1bd5bf86a5597e2afd6c35077d6c2c9 /src | |
parent | b4f0837d3bf1d4c007b3d465edf4fa235f8f5dc6 (diff) | |
download | openttd-6cc287c66914c72aaa63cc3caa27d5480399f15b.tar.xz |
(svn r11362) -Fix [FS#1380]: cloning vehicles with non-standard sub-cargotypes (i.e. livery refits) failed.
Diffstat (limited to 'src')
-rw-r--r-- | src/vehicle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicle.cpp b/src/vehicle.cpp index 48f16b582..d734d229d 100644 --- a/src/vehicle.cpp +++ b/src/vehicle.cpp @@ -1804,7 +1804,7 @@ CommandCost CmdCloneVehicle(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) if (flags & DC_EXEC) { assert(w != NULL); - if (w->cargo_type != v->cargo_type || w->cargo_subtype != v->cargo_type) { + if (w->cargo_type != v->cargo_type || w->cargo_subtype != v->cargo_subtype) { cost = DoCommand(0, w->index, v->cargo_type | (v->cargo_subtype << 8) | 1U << 16 , flags, GetCmdRefitVeh(v)); if (CmdSucceeded(cost)) total_cost.AddCost(cost); } |