Skip to content

Commit

Permalink
Revert "added Pidgey to evolve list"
Browse files Browse the repository at this point in the history
This reverts commit 244893a.
  • Loading branch information
NecronomiconCoding committed Jul 22, 2016
2 parents 244893a + 8534888 commit 8b36745
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
14 changes: 7 additions & 7 deletions PokemonGo.RocketAPI.Console/ConsoleLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,31 +48,31 @@ public void Write(string message, LogLevel level = LogLevel.Info, ConsoleColor c
case LogLevel.Info:
System.Console.ForegroundColor = ConsoleColor.DarkCyan;
System.Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}] (INFO) {message}");
break;
break;
case LogLevel.Pokestop:
System.Console.ForegroundColor = ConsoleColor.Cyan;
System.Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}] (POKESTOP) {message}");
break;
break;
case LogLevel.Farming:
System.Console.ForegroundColor = ConsoleColor.Magenta;
System.Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}] (FARMING) {message}");
break;
break;
case LogLevel.Recycling:
System.Console.ForegroundColor = ConsoleColor.DarkMagenta;
System.Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}] (RECYCLING) {message}");
break;
break;
case LogLevel.Caught:
System.Console.ForegroundColor = ConsoleColor.Green;
System.Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}] (CAUGHT) {message}");
break;
break;
case LogLevel.Transfer:
System.Console.ForegroundColor = ConsoleColor.DarkGreen;
System.Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}] (TRANSFERED) {message}");
break;
break;
case LogLevel.Evolve:
System.Console.ForegroundColor = ConsoleColor.Yellow;
System.Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}] (EVOLVED) {message}");
break;
break;
case LogLevel.Berry:
System.Console.ForegroundColor = ConsoleColor.Magenta;
System.Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}] (BERRY) {message}");
Expand Down
1 change: 0 additions & 1 deletion PokemonGo.RocketAPI.Console/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ public ICollection<PokemonId> PokemonsToEvolve
//Type of pokemons to evolve
return new[]
{
PokemonId.Pidgey,
PokemonId.Rattata,
PokemonId.Spearow,
PokemonId.Ekans,
Expand Down

0 comments on commit 8b36745

Please sign in to comment.