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; }