diff --git a/Game/Object/Vehicle.cs b/Game/Object/Vehicle.cs index 22737a9..b8eb22f 100644 --- a/Game/Object/Vehicle.cs +++ b/Game/Object/Vehicle.cs @@ -69,6 +69,9 @@ public Utils.Infos GetInfos() public virtual void _MoreDetails(ref Utils.Infos details) { } public bool IsSpawned => _Is(global::Vehicle.Flags.Spawned); + public bool IsGoingBack => _Is(global::Vehicle.Flags.GoingBack); + public bool IsExporting => _Is(global::Vehicle.Flags.Exporting); + public bool IsImporting => _Is(global::Vehicle.Flags.Importing); public bool IsReversed => _Is(global::Vehicle.Flags.Reversed); public bool IsHead => GetVehicle().m_leadingVehicle == 0; public bool IsEnd => GetVehicle().m_trailingVehicle == 0;