Skip to content

Commit

Permalink
Fixed fixed fixed namespace testing failing
Browse files Browse the repository at this point in the history
  • Loading branch information
Somfic committed Mar 11, 2024
1 parent 3d08a8d commit 5bb7c51
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions EliteAPI.Status/Ship/StatusEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,22 +53,22 @@ namespace EliteAPI.Status.Ship;

[JsonProperty("Flags2")]
public CommanderFlags Flags2 { get; init; }
public bool IsOnFoot => GetCommanderFlag(0);
public bool OnFoot => GetCommanderFlag(0);
public bool InTaxi => GetCommanderFlag(1);
public bool InMultiCrew => GetCommanderFlag(2);
public bool IsOnFootInStation => GetCommanderFlag(3);
public bool IsOnFootOnPlanet => GetCommanderFlag(4);
public bool OnFootInStation => GetCommanderFlag(3);
public bool OnFootOnPlanet => GetCommanderFlag(4);
public bool AimDownSight => GetCommanderFlag(5);
public bool LowOxygen => GetCommanderFlag(6);
public bool LowHealth => GetCommanderFlag(7);
public bool IsCold => GetCommanderFlag(8);
public bool IsHot => GetCommanderFlag(9);
public bool Cold => GetCommanderFlag(8);
public bool Hot => GetCommanderFlag(9);
public bool VeryCold => GetCommanderFlag(10);
public bool VeryHot => GetCommanderFlag(11);
public bool Gliding => GetCommanderFlag(12);
public bool IsOnFootInHangar => GetCommanderFlag(13);
public bool IsOnFootInSocialSpace => GetCommanderFlag(14);
public bool IsOnFootInExterior => GetCommanderFlag(15);
public bool OnFootInHangar => GetCommanderFlag(13);
public bool OnFootInSocialSpace => GetCommanderFlag(14);
public bool OnFootInExterior => GetCommanderFlag(15);
public bool BreathableAtmosphere => GetCommanderFlag(16);

[JsonProperty("Pips")]
Expand Down

0 comments on commit 5bb7c51

Please sign in to comment.