diff --git a/src/engine/gameManager/SimulationManager.java b/src/engine/gameManager/SimulationManager.java index b385871e..d487b8bf 100644 --- a/src/engine/gameManager/SimulationManager.java +++ b/src/engine/gameManager/SimulationManager.java @@ -176,20 +176,6 @@ public enum SimulationManager { if (player == null) continue; - for(PlayerCharacter pc : SessionManager.getAllActivePlayers()){ - if(pc.isActive() == false) - continue; - - if(pc.isEnteredWorld() == false) - continue; - - if(player.getClientConnection().machineID.equals(pc.getClientConnection().machineID)){ - //add deatshroud effect - player.isBoxed = true; - break; - } - player.isBoxed = false; - } player.update(); }