Skip to content

Commit

Permalink
Merge pull request NecronomiconCoding#1593 from Andrerm124/master
Browse files Browse the repository at this point in the history
Potential Evolves Update 1
  • Loading branch information
NecronomiconCoding authored Jul 31, 2016
2 parents a8d9e94 + 184601f commit 5890af8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion PoGo.NecroBot.CLI/ConsoleEventListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,10 @@ public void HandleEvent(DisplayHighestsPokemonEvent evt, ISession session)

public void HandleEvent( EvolveCountEvent evt, ISession session )
{
Logger.Write( "[Evolves] Potential Evolves: " + evt.Evolves, LogLevel.Update, ConsoleColor.White );
Logger.Write( $"[Evolves] Potential Evolves: {evt.Evolves}" +
( session.LogicSettings.UseLuckyEggsWhileEvolving ?
$" | {session.LogicSettings.UseLuckyEggsMinPokemonAmount} required for mass evolving"
: "" ), LogLevel.Update, ConsoleColor.White );
}

public void HandleEvent(UpdateEvent evt, ISession session)
Expand Down

0 comments on commit 5890af8

Please sign in to comment.