fix dhally spec bug

This commit is contained in:
Player Name 2026-07-15 07:48:20 +02:00
parent 3a5a71f6af
commit 319b019ec3

View file

@ -101,7 +101,7 @@ public final class SweepSpecialHandler extends MeleeSwingHandler implements Plug
List<BattleState> l = new ArrayList<>(20);
l.add(new BattleState(entity, victim));
for (Entity n : victim instanceof NPC ? RegionManager.getSurroundingNPCs(victim, 9) : RegionManager.getSurroundingPlayers(victim, 9)) {
if (n == entity) {
if (n == entity || n == victim) {
continue;
}
if (n instanceof Familiar) {