178179180181182183184185186187188
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) {