diff --git a/src/main/java/net/ccbluex/liquidbounce/features/module/modules/render/ESP.kt b/src/main/java/net/ccbluex/liquidbounce/features/module/modules/render/ESP.kt index 2f4df0f81b6..bfa4bed8723 100644 --- a/src/main/java/net/ccbluex/liquidbounce/features/module/modules/render/ESP.kt +++ b/src/main/java/net/ccbluex/liquidbounce/features/module/modules/render/ESP.kt @@ -206,6 +206,9 @@ object ESP : Module("ESP", ModuleCategory.RENDER) { GlowShader.startDraw(event.partialTicks, glowRenderScale) for (entity in entities) { + if (entity is EntityPlayer && entity == mc.thePlayer) continue + if (!isSelected(entity, false)) continue + val distanceSquared = mc.thePlayer.getDistanceSqToEntity(entity) if (distanceSquared <= maxRenderDistanceSq) {