aircraft_cmd.c
changeset 2697 c7b1a950c4cf
parent 2662 42c11a1a0a4b
child 2704 dc9ae68dfd74
--- a/aircraft_cmd.c	Sat Nov 26 16:18:15 2005 +0000
+++ b/aircraft_cmd.c	Sat Nov 26 16:41:14 2005 +0000
@@ -1469,7 +1469,7 @@
 
 	// check if the aircraft needs to be replaced or renewed and send it to a hangar if needed
 	if (v->owner == _local_player && (
-				p->engine_replacement[v->engine_type] != INVALID_ENGINE ||
+				EngineHasReplacement(p, v->engine_type) ||
 				(p->engine_renew && v->age - v->max_age > p->engine_renew_months * 30)
 			)) {
 		_current_player = _local_player;
@@ -1533,7 +1533,7 @@
 	// check if the aircraft needs to be replaced or renewed and send it to a hangar if needed
 	if (v->current_order.type != OT_GOTO_DEPOT && v->owner == _local_player) {
 		// only the vehicle owner needs to calculate the rest (locally)
-		if ((p->engine_replacement[v->engine_type] != INVALID_ENGINE) ||
+		if (EngineHasReplacement(p, v->engine_type) ||
 			(p->engine_renew && v->age - v->max_age > (p->engine_renew_months * 30))) {
 			// send the aircraft to the hangar at next airport (bit 17 set)
 			_current_player = _local_player;