Skip to content

Commit

Permalink
Merge pull request #281 from Spegeli/patch-4
Browse files Browse the repository at this point in the history
Update Statistics.cs // removed decimal numbers for EXP/H and P/H
  • Loading branch information
NecronomiconCoding authored Jul 23, 2016
2 parents 264d41f + ce23124 commit fc9c6cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PokemonGo.RocketAPI.Logic/Utils/Statistics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public override string ToString()
{
return
string.Format(
"{0} - Runtime {1} - Lvl: {2:0} | EXP/H: {3:0.0} | P/H: {4:0.0} | Stardust: {5:0} | Transfered: {6:0} | Items Recycled: {7:0}",
"{0} - Runtime {1} - Lvl: {2:0} | EXP/H: {3:0} | P/H: {4:0} | Stardust: {5:0} | Transfered: {6:0} | Items Recycled: {7:0}",
PlayerName, _getSessionRuntimeInTimeFormat(), CurrentLevelInfos, TotalExperience/_getSessionRuntime(),
TotalPokemons/_getSessionRuntime(), TotalStardust, TotalPokemonsTransfered, TotalItemsRemoved);
}
Expand All @@ -182,4 +182,4 @@ public async void UpdateConsoleTitle(Inventory inventory)
Console.Title = ToString();
}
}
}
}

0 comments on commit fc9c6cf

Please sign in to comment.