public void HandleEvent(NoPokeballEvent evt, ISession session)
 {
     Logger.Write(session.Translation.GetTranslation(TranslationString.EventNoPokeballs, evt.Id, evt.Cp),
         LogLevel.Caught);
 }
Example #2
0
 private static void HandleEvent(NoPokeballEvent noPokeballEvent, ISession session)
 {
     Logger.Write(session.Translation.GetTranslation(TranslationString.EventNoPokeballs, noPokeballEvent.Id, noPokeballEvent.Cp),
         LogLevel.Caught);
 }
 public void HandleEvent(NoPokeballEvent evt, ISession session)
 {
 }
 public void HandleEvent(NoPokeballEvent evt, Context ctx)
 {
 }
 public void HandleEvent(NoPokeballEvent evt, Context ctx)
 {
     Logger.Write($"No Pokeballs - We missed a {evt.Id} with CP {evt.Cp}", LogLevel.Caught);
 }
 public void HandleEvent(NoPokeballEvent evt, Context ctx)
 {
     Logger.Write(ctx.Translations.GetTranslation(TranslationString.EventNoPokeballs, evt.Id, evt.Cp),
         LogLevel.Caught);
 }