diff --git a/src/NadekoBot/Modules/Xp/Services/XpService.cs b/src/NadekoBot/Modules/Xp/Services/XpService.cs index cef953651..ac53a677e 100644 --- a/src/NadekoBot/Modules/Xp/Services/XpService.cs +++ b/src/NadekoBot/Modules/Xp/Services/XpService.cs @@ -746,27 +746,6 @@ namespace NadekoBot.Modules.Xp.Services guildRank); } - public static (int Level, int LevelXp, int LevelRequiredXp) GetLevelData(UserXpStats stats) - { - var baseXp = XpService.XP_REQUIRED_LVL_1; - - var required = baseXp; - var totalXp = 0; - var lvl = 1; - while (true) - { - required = (int) (baseXp + baseXp / 4.0 * (lvl - 1)); - - if (required + totalXp > stats.Xp) - break; - - totalXp += required; - lvl++; - } - - return (lvl - 1, stats.Xp - totalXp, required); - } - public bool ToggleExcludeServer(ulong id) { using (var uow = _db.GetDbContext())