public void onRoundStarted(RoundStartedEvent event) {
   for (IBattleListener listener : listeners) {
     try {
       listener.onRoundStarted(event);
     } catch (Throwable ex) {
       logError("onRoundStarted " + listener.getClass(), ex);
     }
   }
 }