1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-11-29 20:04:33 +00:00

FIX: Correct typo in unlock events

This commit is contained in:
Dave Corley 2025-11-08 15:52:02 -06:00
parent ef05e089ab
commit 42fa037195

View file

@ -218,7 +218,7 @@ Lock a container or door
.. code-block:: Lua
core.sendGlobalEvent('Lock', {taret = selected, magnitude = 50})
core.sendGlobalEvent('Lock', {target = selected, magnitude = 50})
**Unlock**
@ -226,4 +226,4 @@ Unlock a container or door
.. code-block:: Lua
core.sendGlobalEvent('Unlock', {taret = selected})
core.sendGlobalEvent('Unlock', {target = selected})