mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-29 20:06:43 +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()
|
void InputManager::toggleSneaking()
|
||||||
{
|
{
|
||||||
if (MWBase::Environment::get().getWindowManager()->isGuiMode()) return;
|
if (MWBase::Environment::get().getWindowManager()->isGuiMode()) return;
|
||||||
|
if (!mControlSwitch["playercontrols"]) return;
|
||||||
mSneaking = !mSneaking;
|
mSneaking = !mSneaking;
|
||||||
mPlayer->setSneak(mSneaking);
|
mPlayer->setSneak(mSneaking);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue