diff options
author | yenatch <yenatch@gmail.com> | 2013-10-01 01:13:21 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-10-01 01:13:21 -0400 |
commit | cf359b09fc037282cd1c8db8a11fc9e3353d4019 (patch) | |
tree | d3a5e799aa6c49593b15ee546afb0c36363e86a0 /engine/std_scripts.asm | |
parent | 4cdc51d159e588426952bdf7dffea9087df2c6d8 (diff) |
fix parsing errors for displaylocation
Diffstat (limited to 'engine/std_scripts.asm')
-rw-r--r-- | engine/std_scripts.asm | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/engine/std_scripts.asm b/engine/std_scripts.asm index 22e2e9478..7b64ebe00 100644 --- a/engine/std_scripts.asm +++ b/engine/std_scripts.asm @@ -2350,7 +2350,7 @@ MomPhoneScript: ; 0xbceaa mapnametotext $0 checkcode $f if_equal $1, UnknownScript_0xbcee7 - if_equal $2, $4f27 + if_equal $2, UnknownScript_0xbcf27 2jump UnknownScript_0xbcf2f UnknownScript_0xbcedf: ; 0xbcedf @@ -2380,14 +2380,16 @@ UnknownScript_0xbcee7: ; 0xbcee7 2jump UnknownScript_0xbcf37 .violet ; 0xbcf15 - displaylocation $7 ; sprout tower - 3call $3, UnknownScript_0xbcedf + displaylocation $7, 1 ; sprout tower + 2jump UnknownScript_0xbcedf .azalea ; 0xbcf1b - displaylocation $d ; slowpoke well - 3call $3, UnknownScript_0xbcedf + displaylocation $d, 1 ; slowpoke well + 2jump UnknownScript_0xbcedf .goldenrod ; 0xbcf21 - displaylocation $11 ; radio tower - 3call $3, UnknownScript_0xbcedf + displaylocation $11, 1 ; radio tower + 2jump UnknownScript_0xbcedf + +UnknownScript_0xbcf27: ; 0xbcf27 3writetext $6d, $411c keeptextopen 2jump UnknownScript_0xbcf37 |