Prevent world input from affecting inventory (#354)

This commit is contained in:
Alezito2008
2026-03-04 01:29:29 -03:00
committed by GitHub
parent f870ef2a10
commit d31d261ffd

View File

@@ -33,6 +33,11 @@ UIScene_AbstractContainerMenu::UIScene_AbstractContainerMenu(int iPad, UILayer *
m_bHasMousePosition = false;
m_lastMouseX = 0;
m_lastMouseY = 0;
for (int btn = 0; btn < 3; btn++)
{
KMInput.ConsumeMousePress(btn);
}
#endif
}