(svn r11362) -Fix [FS#1380]: cloning vehicles with non-standard sub-cargotypes (i.e. livery refits) failed.
authorrubidium
Tue, 30 Oct 2007 20:31:35 +0000
changeset 8308 5462f200e475
parent 8307 69b6c05a6029
child 8309 017d4289aca3
(svn r11362) -Fix [FS#1380]: cloning vehicles with non-standard sub-cargotypes (i.e. livery refits) failed.
src/vehicle.cpp
--- a/src/vehicle.cpp	Tue Oct 30 18:56:06 2007 +0000
+++ b/src/vehicle.cpp	Tue Oct 30 20:31:35 2007 +0000
@@ -1804,7 +1804,7 @@
 			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);
 				}