bro I swear minecraft is mindfucking me sometimes

This commit is contained in:
LazyByteDev
2026-03-05 22:22:11 -05:00
parent 165f8205c5
commit c5e3e62f67

View File

@@ -1508,6 +1508,14 @@ void Minecraft::run_middle()
if(g_KBMInput.IsKeyPressed(KeyboardMouseInput::KEY_THIRD_PERSON))
localplayers[i]->ullButtonsPressed|=1LL<<MINECRAFT_ACTION_RENDER_THIRD_PERSON;
if (g_KBMInput.IsKeyPressed(VK_F3))
{
if (Minecraft::GetInstance()->options->renderDebug)
Minecraft::GetInstance()->options->renderDebug = true;
else
Minecraft::GetInstance()->options->renderDebug = false;
}
if(g_KBMInput.IsKeyPressed(KeyboardMouseInput::KEY_DEBUG_INFO))
{
localplayers[i]->ullButtonsPressed|=1LL<<MINECRAFT_ACTION_GAME_INFO;