diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-05-04 01:21:50 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-05-04 01:21:50 -0400 |
commit | 4206359862da51e3cc3d6b36ab0a3280c1123b9e (patch) | |
tree | 8fdc84f588af2678cb5081c9b62c2601b17b9f93 /asm/macros | |
parent | 24e02085d77a71834cead3886b4ae2fbfbb72b6f (diff) |
Fix some object lock names
Diffstat (limited to 'asm/macros')
-rw-r--r-- | asm/macros/event.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asm/macros/event.inc b/asm/macros/event.inc index f3f17c5d8..e25c76de4 100644 --- a/asm/macros/event.inc +++ b/asm/macros/event.inc @@ -812,12 +812,12 @@ .byte 0x68 .endm - @ Ceases movement for all Objects on-screen. + @ Freezes all objects immediately except the player. The player is frozen once their movement is finished. .macro lockall .byte 0x69 .endm - @ If the script was called by an Object, then that Object's movement will cease. + @ Freezes all objects immediately except the player and the selected object. The player and selected object are frozen once their movement is finished. .macro lock .byte 0x6a .endm |