From f4215cf6a011d00209834f442df78b721f897993 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Wed, 8 Feb 2006 19:06:46 +0000 Subject: (svn r3579) v->u.rail.first_engine holds an engine type, not a vehicle index, so use INVALID_ENGINE. --- vehicle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vehicle.c') diff --git a/vehicle.c b/vehicle.c index 4740ab9ac..ede33bfd6 100644 --- a/vehicle.c +++ b/vehicle.c @@ -1753,7 +1753,7 @@ static void MaybeReplaceVehicle(Vehicle *v) temp_cost = ReplaceVehicle(&w, flags); if (flags & DC_EXEC && - (w->type != VEH_Train || w->u.rail.first_engine == INVALID_VEHICLE)) { + (w->type != VEH_Train || w->u.rail.first_engine == INVALID_ENGINE)) { /* now we bought a new engine and sold the old one. We need to fix the * pointers in order to avoid pointing to the old one for trains: these * pointers should point to the front engine and not the cars -- cgit v1.2.3-54-g00ecf