minor stuff
Sen66 [2016-07-22 02:34:44]
diff --git a/PokemonGo/RocketAPI/Console/Program.cs b/PokemonGo/RocketAPI/Console/Program.cs
index ecffc4b..efbaf68 100644
--- a/PokemonGo/RocketAPI/Console/Program.cs
+++ b/PokemonGo/RocketAPI/Console/Program.cs
@@ -472,7 +472,7 @@ namespace PokemonGo.RocketAPI.Console
if (Currentlevel != v.Level)
{
Currentlevel = v.Level;
- ColoredConsoleWrite(ConsoleColor.Magenta, $"[{DateTime.Now.ToString("HH:mm:ss")}] Levelup! Current Level: " + v.Level);
+ ColoredConsoleWrite(ConsoleColor.Magenta, $"[{DateTime.Now.ToString("HH:mm:ss")}] Levelup! Current Level: " + v.Level + ". XP needed for next Level:" + (v.NextLevelXp - v.Experience));
}
await Task.Delay(ClientSettings.LevelTimeInterval * 1000);
You may download the files in Public Git.