From 8c5de848840ff0214d59e5a2668f7ee994464645 Mon Sep 17 00:00:00 2001 From: Soda Can Date: Tue, 10 Mar 2026 15:14:57 +1100 Subject: [PATCH] remove leftover comment --- Minecraft.Client/SDK.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Minecraft.Client/SDK.cpp b/Minecraft.Client/SDK.cpp index c6240156..031da295 100644 --- a/Minecraft.Client/SDK.cpp +++ b/Minecraft.Client/SDK.cpp @@ -124,7 +124,6 @@ float SDK::GetPlayerHealth(int index) { void SDK::SetPlayerHealth(float health, int index) { auto* p = GetLocalPlayer(index); if (!p) return; - // Clamp to valid range so modders can't accidentally set 999 hp if (health < 0.0f) health = 0.0f; if (health > p->getMaxHealth()) health = p->getMaxHealth(); p->setHealth(health);