Ejemplo n.º 1
0
 public static void HandleGameFightTurnListMessage(Bot bot, GameFightTurnListMessage message)
 {
 }
Ejemplo n.º 2
0
 public void HandleGameFightTurnListMessage(Bot bot, GameFightTurnListMessage message)
 {
     bot.Character.Fight.Update(message);
 }
Ejemplo n.º 3
0
 public static void HandleGameFightTurnListMessage(Bot bot, GameFightTurnListMessage message)
 {
     if (!bot.Character.IsFighting())
         logger.Error("Received GameFightTurnListMessage but character is not in fight !");
     else
         bot.Character.Fight.Update(message);
 }