Fix some more issues

This commit is contained in:
2025-08-02 13:25:22 +02:00
parent 7e61db5e58
commit 43cca3376e
8 changed files with 65 additions and 13 deletions
@@ -62,7 +62,7 @@ public class KillAllCommand extends SWCommand {
WORLD.getEntities()
.stream()
.filter(e -> !(e instanceof Player))
.filter(e -> region.inRegion(e.getLocation()))
.filter(e -> region.getArea().inRegion(e.getLocation(), false))
.forEach(entity -> {
entity.remove();
count.incrementAndGet();