diff options
Diffstat (limited to 'Malmstone/Services/PVPService.cs')
| -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 { |
