mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 21:23:52 +00:00
Don't toggle sneaking while controls are disabled
This commit is contained in:
parent
f49ca98c8c
commit
4787e6b9a7
1 changed files with 1 additions and 0 deletions
|
@ -1395,6 +1395,7 @@ namespace MWInput
|
|||
void InputManager::toggleSneaking()
|
||||
{
|
||||
if (MWBase::Environment::get().getWindowManager()->isGuiMode()) return;
|
||||
if (!mControlSwitch["playercontrols"]) return;
|
||||
mSneaking = !mSneaking;
|
||||
mPlayer->setSneak(mSneaking);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue