mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 17:29:55 +00:00
Merge branch 'fix_7156' into 'master'
Fix #7156 "Autorun is broken" Closes #7156 See merge request OpenMW/openmw!2613
This commit is contained in:
commit
d1c602ce85
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ local function onInputAction(action)
|
||||||
elseif action == input.ACTION.Use then
|
elseif action == input.ACTION.Use then
|
||||||
startAttack = true
|
startAttack = true
|
||||||
elseif action == input.ACTION.AutoMove and not movementControlsOverridden then
|
elseif action == input.ACTION.AutoMove and not movementControlsOverridden then
|
||||||
autoMove = true
|
autoMove = not autoMove
|
||||||
elseif action == input.ACTION.AlwaysRun and not movementControlsOverridden then
|
elseif action == input.ACTION.AlwaysRun and not movementControlsOverridden then
|
||||||
settings:set('alwaysRun', not settings:get('alwaysRun'))
|
settings:set('alwaysRun', not settings:get('alwaysRun'))
|
||||||
elseif action == input.ACTION.Sneak and not movementControlsOverridden then
|
elseif action == input.ACTION.Sneak and not movementControlsOverridden then
|
||||||
|
|
Loading…
Reference in a new issue