mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-31 17:15:34 +00:00
Merge pull request #2371 from Capostrophic/sneak
Don't toggle sneaking when controls are disabled
This commit is contained in:
commit
e0af6532ec
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