From 2ff4492abc0a131613a4ec983f862a30b0781029 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Sat, 27 Jan 2007 12:29:55 +0000 Subject: (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow. --- src/ai/default/default.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ai/default') diff --git a/src/ai/default/default.cpp b/src/ai/default/default.cpp index 7316b5648..ed805fb43 100644 --- a/src/ai/default/default.cpp +++ b/src/ai/default/default.cpp @@ -95,7 +95,7 @@ static void AiStateVehLoop(Player *p) if ((v->type == VEH_Train && v->subtype == 0) || v->type == VEH_Road || - (v->type == VEH_Aircraft && v->subtype <= 2) || + (v->type == VEH_Aircraft && IsNormalAircraft(v)) || v->type == VEH_Ship) { /* replace engine? */ if (v->type == VEH_Train && v->engine_type < 3 && -- cgit v1.2.3-54-g00ecf