mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-02 09:40:35 +00:00
00aa407edd
-Fix: Be more strict what it means for an aircraft to be in a hangar: It's not just being stopped on a hangar tile
17 lines
341 B
C
17 lines
341 B
C
/* $Id$ */
|
|
|
|
#include "station_map.h"
|
|
#include "vehicle.h"
|
|
|
|
|
|
static inline bool IsAircraftInHangar(const Vehicle* v)
|
|
{
|
|
assert(v->type == VEH_Aircraft);
|
|
return v->vehstatus & VS_HIDDEN && IsHangarTile(v->tile);
|
|
}
|
|
|
|
static inline bool IsAircraftInHangarStopped(const Vehicle* v)
|
|
{
|
|
return IsAircraftInHangar(v) && v->vehstatus & VS_STOPPED;
|
|
}
|