From f2af519d643f559e135046acab1c14e9326d579b Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Fri, 8 Aug 2025 13:22:45 +0900 Subject: update for 7.3 --- Malmstone/Services/PVPService.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Malmstone/Services') diff --git a/Malmstone/Services/PVPService.cs b/Malmstone/Services/PVPService.cs index 12b4c2a..0c61820 100644 --- a/Malmstone/Services/PVPService.cs +++ b/Malmstone/Services/PVPService.cs @@ -26,7 +26,7 @@ namespace Malmstone.Services unsafe { var pvpProfile = PvPProfile.Instance(); - if (pvpProfile != null && pvpProfile->IsLoaded != 0) + if (pvpProfile != null && pvpProfile->IsLoaded) { return new PvPSeriesInfo { @@ -44,7 +44,7 @@ namespace Malmstone.Services unsafe { var pvpProfile = PvPProfile.Instance(); - if (pvpProfile != null && pvpProfile->IsLoaded != 0) + if (pvpProfile != null && pvpProfile->IsLoaded) { CachedFrontlineResults = new PVPProfileFrontlineResults { @@ -132,7 +132,7 @@ namespace Malmstone.Services unsafe { var pvpProfile = PvPProfile.Instance(); - if (pvpProfile != null && pvpProfile->IsLoaded != 0) + if (pvpProfile != null && pvpProfile->IsLoaded) { return new PVPProfileFrontlineResults { -- cgit v1.2.3