From 8be8ced61a988477cd96b45605657f0283438718 Mon Sep 17 00:00:00 2001 From: jenz Date: Mon, 8 Jun 2026 12:49:11 +0200 Subject: [PATCH] tried changing mask slightly --- RenderDistance_webclient/scripting/RenderDistance.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RenderDistance_webclient/scripting/RenderDistance.sp b/RenderDistance_webclient/scripting/RenderDistance.sp index 07fc5de..7bc687e 100644 --- a/RenderDistance_webclient/scripting/RenderDistance.sp +++ b/RenderDistance_webclient/scripting/RenderDistance.sp @@ -116,7 +116,7 @@ public Action DoTransmit(int entity, int client) iSearchEntity[client] = entity; bFoundEntity[client] = false; - TR_EnumerateEntitiesSphere(vec, float(iDistance[client]), PARTITION_SOLID_EDICTS | PARTITION_TRIGGER_EDICTS, EnumerateSphere, client); + TR_EnumerateEntitiesSphere(vec, float(iDistance[client]), PARTITION_SOLID_EDICTS | PARTITION_TRIGGER_EDICTS | PARTITION_NON_STATIC_EDICTS, EnumerateSphere, client); return bFoundEntity[client] ? Plugin_Continue : Plugin_Handled; }