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