From 5bb7c515a3070129f961e67a0b8d83dda5ae33e1 Mon Sep 17 00:00:00 2001 From: Lucas Date: Mon, 11 Mar 2024 14:38:39 +0100 Subject: [PATCH] Fixed fixed fixed namespace testing failing --- EliteAPI.Status/Ship/StatusEvent.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/EliteAPI.Status/Ship/StatusEvent.cs b/EliteAPI.Status/Ship/StatusEvent.cs index 17ecf570..f7c75572 100644 --- a/EliteAPI.Status/Ship/StatusEvent.cs +++ b/EliteAPI.Status/Ship/StatusEvent.cs @@ -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")]