diff options
author | yenatch <yenatch@gmail.com> | 2013-09-24 03:29:37 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-09-24 03:29:37 -0400 |
commit | 2afb247caa266c27ffb0160da41ec84e77a46138 (patch) | |
tree | 6320a268db45368fca8a68e82eed34610d8cc50a /engine/scripting.asm | |
parent | f6a5d7b2f2bce987ae7d5e291e80e830516c2965 (diff) |
script commands wildon and wildoff got mixed up
this was a mistake in the original pksv spec and tauwasser's notes
Diffstat (limited to 'engine/scripting.asm')
-rw-r--r-- | engine/scripting.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/scripting.asm b/engine/scripting.asm index 597f25693..481a8c7e4 100644 --- a/engine/scripting.asm +++ b/engine/scripting.asm @@ -54,8 +54,8 @@ ScriptCommandTable: ; 0x96cb1 dw Script_checkbit2 dw Script_clearbit2 dw Script_setbit2 - dw Script_wildoff dw Script_wildon + dw Script_wildoff dw Script_xycompare dw Script_warpmod dw Script_blackoutmod @@ -2770,7 +2770,7 @@ Unknown_0x979ee: ; 0x979ee ret ; 0x979f5 -Script_wildon: ; 0x979f5 +Script_wildoff: ; 0x979f5 ; script command 0x38 ld hl, $d84c @@ -2778,7 +2778,7 @@ Script_wildon: ; 0x979f5 ret ; 0x979fb -Script_wildoff: ; 0x979fb +Script_wildon: ; 0x979fb ; script command 0x37 ld hl, $d84c |