public void HandleGameFightStartMessage(Bot bot, GameFightStartMessage message)
 {
     bot.Character.Fight.StartFight();
 }
 public static void HandleGameFightStartMessage(Bot bot, GameFightStartMessage message)
 {
     if (!bot.Character.IsFighting())
         logger.Error("Received GameFightStartMessage but character is not in fight !");
     else
         bot.Character.Fight.StartFight();
 }