From 5b06a7aa9f2e514612863a3dc094f0d99327ef73 Mon Sep 17 00:00:00 2001 From: GabsPuNs Date: Sat, 23 May 2026 14:59:25 -0400 Subject: [PATCH] Add TODO --- Minecraft.World/Entity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.World/Entity.cpp b/Minecraft.World/Entity.cpp index d03b3bff..535f7ba3 100644 --- a/Minecraft.World/Entity.cpp +++ b/Minecraft.World/Entity.cpp @@ -1334,7 +1334,7 @@ bool Entity::shouldRender(Vec3 *c) bool Entity::shouldRenderAtSqrDistance(double distance) { double size = bb->getSize(); - size *= 64.0f * viewScale; + size *= 64.0f * viewScale; //TODO Implement Entity Distance Render Option return distance < size * size; }