Package games.stendhal.server.entity.creature

Examples of games.stendhal.server.entity.creature.Creature.stopAttack()


    final int sz=rats.size();
    int i=0;
    while(rats.size()!=0) {
      try {
      final Creature rat = rats.get(0);
      rat.stopAttack();
      rat.clearDropItemList();
      rat.getZone().remove(rat);
      rats.remove(0);
      i++;
      } catch (IndexOutOfBoundsException ioobe) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.