Beispiel #1
0
 /**
  * Method removeInvul.
  *
  * @param npc NpcInstance
  */
 private void removeInvul(NpcInstance npc) {
   for (Effect e : npc.getEffectList().getAllEffects()) {
     if (e.getSkill().getId() == 6371) {
       e.exit();
     }
   }
 }