diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-08-08 13:22:45 +0900 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-08-08 07:28:08 -0700 |
| commit | f2af519d643f559e135046acab1c14e9326d579b (patch) | |
| tree | 681dd0ee32a43d0df0ae81d06860f954c44e27bf /Malmstone/Services | |
| parent | a512dac032c4added8deddc192cda612ea91fd98 (diff) | |
update for 7.3
Diffstat (limited to 'Malmstone/Services')
| -rw-r--r-- | Malmstone/Services/PVPService.cs | 6 |
1 files changed, 3 insertions, 3 deletions
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 { |
