From 89e05cd10963a19bdc9b789468549587d40e612a Mon Sep 17 00:00:00 2001 From: D4rkr34lm Date: Sat, 30 May 2026 13:30:47 +0200 Subject: [PATCH] Remove remnatn of old impl --- .../SpigotCore_Main/src/de/steamwar/entity/REntityServer.java | 1 - 1 file changed, 1 deletion(-) diff --git a/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/REntityServer.java b/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/REntityServer.java index b6e3d2d4..d980d439 100644 --- a/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/REntityServer.java +++ b/SpigotCore/SpigotCore_Main/src/de/steamwar/entity/REntityServer.java @@ -59,7 +59,6 @@ public class REntityServer implements Listener { private final BiFunction filter = (player, packet) -> { REntity entity = entityMap.get(packet.getEntityId()); if (entity == null) return packet; - REntity targetEntity = entity instanceof RInteractionEntity ? ((RInteractionEntity) entity).getOwner() : entity; if (playersThatClicked.contains(player)) return null;