Skip to content

Commit

Permalink
Merge pull request #3304 from FabryB/master
Browse files Browse the repository at this point in the history
Pokemon trasfer readability
  • Loading branch information
GrimmGringo committed Aug 8, 2016
2 parents fb2ea42 + 680d890 commit a263d15
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions PoGo.NecroBot.CLI/ConsoleEventListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ private static void HandleEvent(TransferPokemonEvent transferPokemonEvent, ISess
{
Logger.Write(
session.Translation.GetTranslation(TranslationString.EventPokemonTransferred,
session.Translation.GetPokemonTranslation(transferPokemonEvent.Id),
transferPokemonEvent.Cp,
transferPokemonEvent.Perfection.ToString("0.00"),
transferPokemonEvent.BestCp,
transferPokemonEvent.BestPerfection.ToString("0.00"),
session.Translation.GetPokemonTranslation(transferPokemonEvent.Id).PadRight(12, ' '),
transferPokemonEvent.Cp.ToString().PadLeft(4, ' '),
transferPokemonEvent.Perfection.ToString("0.00").PadLeft(6, ' '),
transferPokemonEvent.BestCp.ToString().PadLeft(4, ' '),
transferPokemonEvent.BestPerfection.ToString("0.00").PadLeft(6, ' '),
transferPokemonEvent.FamilyCandies),
LogLevel.Transfer);
}
Expand Down

0 comments on commit a263d15

Please sign in to comment.