From e343baeea11887f66654e5f9125e705fd57a0a55 Mon Sep 17 00:00:00 2001 From: Player Name Date: Tue, 9 Jun 2026 19:10:25 +0200 Subject: [PATCH] Fix Treus Dayth unkillable, thanks shire --- Server/src/main/core/game/node/entity/Entity.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Server/src/main/core/game/node/entity/Entity.java b/Server/src/main/core/game/node/entity/Entity.java index d4d1a8f2b..f9746adbd 100644 --- a/Server/src/main/core/game/node/entity/Entity.java +++ b/Server/src/main/core/game/node/entity/Entity.java @@ -236,6 +236,12 @@ public abstract class Entity extends Node { */ public void clear() { active = false; + if (this instanceof Player) { + location.getChunk().removePlayer(asPlayer()); + } + if (this instanceof NPC) { + location.getChunk().remove(asNpc()); + } pulseManager.clear(); }