Skip to content

Commit 5bb7c51

Browse files
committed
Fixed fixed fixed namespace testing failing
1 parent 3d08a8d commit 5bb7c51

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

EliteAPI.Status/Ship/StatusEvent.cs

+8-8
Original file line numberDiff line numberDiff line change
@@ -53,22 +53,22 @@ namespace EliteAPI.Status.Ship;
5353

5454
[JsonProperty("Flags2")]
5555
public CommanderFlags Flags2 { get; init; }
56-
public bool IsOnFoot => GetCommanderFlag(0);
56+
public bool OnFoot => GetCommanderFlag(0);
5757
public bool InTaxi => GetCommanderFlag(1);
5858
public bool InMultiCrew => GetCommanderFlag(2);
59-
public bool IsOnFootInStation => GetCommanderFlag(3);
60-
public bool IsOnFootOnPlanet => GetCommanderFlag(4);
59+
public bool OnFootInStation => GetCommanderFlag(3);
60+
public bool OnFootOnPlanet => GetCommanderFlag(4);
6161
public bool AimDownSight => GetCommanderFlag(5);
6262
public bool LowOxygen => GetCommanderFlag(6);
6363
public bool LowHealth => GetCommanderFlag(7);
64-
public bool IsCold => GetCommanderFlag(8);
65-
public bool IsHot => GetCommanderFlag(9);
64+
public bool Cold => GetCommanderFlag(8);
65+
public bool Hot => GetCommanderFlag(9);
6666
public bool VeryCold => GetCommanderFlag(10);
6767
public bool VeryHot => GetCommanderFlag(11);
6868
public bool Gliding => GetCommanderFlag(12);
69-
public bool IsOnFootInHangar => GetCommanderFlag(13);
70-
public bool IsOnFootInSocialSpace => GetCommanderFlag(14);
71-
public bool IsOnFootInExterior => GetCommanderFlag(15);
69+
public bool OnFootInHangar => GetCommanderFlag(13);
70+
public bool OnFootInSocialSpace => GetCommanderFlag(14);
71+
public bool OnFootInExterior => GetCommanderFlag(15);
7272
public bool BreathableAtmosphere => GetCommanderFlag(16);
7373

7474
[JsonProperty("Pips")]

0 commit comments

Comments
 (0)