diff --git a/Assets/Scripts/Tools.cs b/Assets/Scripts/Tools.cs index 9561038..17032ef 100644 --- a/Assets/Scripts/Tools.cs +++ b/Assets/Scripts/Tools.cs @@ -105,7 +105,7 @@ public static class Tools double percentDone = totalXpForLevel == 0 ? 0.0 : (double)currentXpInLevel / (double)totalXpForLevel * 100.0; - return (totalXp, flooredLevel, currentXpInLevel, totalXpForLevel, percentDone); + return (totalXp, flooredLevel + 1, currentXpInLevel, totalXpForLevel, percentDone); } public static string FormatHumanTime(long unixTimestamp)