mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-02 09:40:35 +00:00
(svn r22743) -Fix [FS#4696]: Make aircraft point to the exit when leaving the hangar.
This commit is contained in:
parent
8b4443953f
commit
068176ee5f
@ -1248,12 +1248,18 @@ void AircraftNextAirportPos_and_Order(Aircraft *v)
|
||||
v->pos = v->previous_pos = AircraftGetEntryPoint(v, apc, rotation);
|
||||
}
|
||||
|
||||
/**
|
||||
* Aircraft is about to leave the hangar.
|
||||
* @param v Aircraft leaving.
|
||||
*/
|
||||
void AircraftLeaveHangar(Aircraft *v)
|
||||
{
|
||||
const Station *st = Station::GetByTile(v->tile);
|
||||
|
||||
v->cur_speed = 0;
|
||||
v->subspeed = 0;
|
||||
v->progress = 0;
|
||||
v->direction = DIR_SE;
|
||||
v->direction = st->airport.GetHangarExitDirection(v->tile);
|
||||
v->vehstatus &= ~VS_HIDDEN;
|
||||
{
|
||||
Vehicle *u = v->Next();
|
||||
|
Loading…
Reference in New Issue
Block a user