 00aa407edd
			
		
	
	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;
 | |
| }
 |