vehicle.c
changeset 4782 6aa485b21dae
parent 4762 771ccf746531
child 4783 3d3cbea8b503
--- a/vehicle.c	Sun Oct 08 21:00:13 2006 +0000
+++ b/vehicle.c	Sun Oct 08 21:10:00 2006 +0000
@@ -1901,7 +1901,7 @@
 	}
 
 	FOR_VEHICLE_ORDERS(u, o) {
-		if (o->refit_cargo == CT_NO_REFIT) continue;
+		if (!(o->refit_cargo < NUM_CARGO)) continue;
 		if (!CanRefitTo(v->engine_type, o->refit_cargo)) continue;
 		if (!CanRefitTo(engine_type, o->refit_cargo)) return false;
 	}
@@ -2530,7 +2530,7 @@
 		v->current_order.type = OT_DUMMY;
 		v->current_order.flags = 0;
 
-		if (t.refit_cargo != CT_NO_REFIT) {
+		if (t.refit_cargo < NUM_CARGO) {
 			int32 cost;
 
 			_current_player = v->owner;