mob resist issue

This commit is contained in:
2024-05-11 18:49:29 -05:00
parent a202a0544e
commit 12b44e216c
2 changed files with 0 additions and 4 deletions
@@ -683,8 +683,6 @@ public abstract class AbstractCharacter extends AbstractWorldObject {
if(Mob.disciplineDroppers.contains(this)){ if(Mob.disciplineDroppers.contains(this)){
return new Resists("Dropper"); return new Resists("Dropper");
} }
if(this.getObjectType().equals(GameObjectType.Mob) && ((Mob)this).behaviourType.equals(MobBehaviourType.HamletGuard))
return new Resists("HamletGuard");
return this.resists; return this.resists;
} }
-2
View File
@@ -48,8 +48,6 @@ public class Resists {
break; break;
case "Dropper": case "Dropper":
setDropperResists(); setDropperResists();
case "HamletGuard":
setHamletGuardResists();
default: default:
setGenericResists(); setGenericResists();
break; break;