Ejemplo n.º 1
0
 /** Removes the origin fighter if he has fled. */
 private void checkFlee() {
   if (lastAction instanceof yuuki.action.Flee) {
     if (lastAction.wasSuccessful()) {
       fled = true;
       removeFighter(lastAction.getOrigin());
     }
   }
 }