diff --git a/PvPLeaderboard/Systems/PvPLeaderboardSystem.cs b/PvPLeaderboard/Systems/PvPLeaderboardSystem.cs index 470f6c9..ec00d2a 100644 --- a/PvPLeaderboard/Systems/PvPLeaderboardSystem.cs +++ b/PvPLeaderboard/Systems/PvPLeaderboardSystem.cs @@ -14,7 +14,7 @@ public static class PvPLeaderboardSystem { #region Consts - private const string PvPPunishmentFileName = "PvPLeaderboard.json"; + private const string PvPLeaderboardFileName = "PvPLeaderboard.json"; #endregion @@ -34,7 +34,7 @@ public static class PvPLeaderboardSystem public static void Initialize() { - _pvpStats = VModStorage.Load(PvPPunishmentFileName, () => new Dictionary()); + _pvpStats = VModStorage.Load(PvPLeaderboardFileName, () => new Dictionary()); VModStorage.SaveEvent += Save; VampireDownedHook.VampireDownedEvent += OnVampireDowned; @@ -48,7 +48,7 @@ public static void Deinitialize() public static void Save() { - VModStorage.Save(PvPPunishmentFileName, _pvpStats); + VModStorage.Save(PvPLeaderboardFileName, _pvpStats); } #endregion