diff options
author | yenatch <yenatch@gmail.com> | 2018-04-01 21:11:10 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2018-04-01 21:11:43 -0400 |
commit | cfec16566e41ced2faa97a3a5314ba5bbc0d0395 (patch) | |
tree | 87eef4766e865431490d4b76365a157c7439f135 /scripts/mtmoon3.asm | |
parent | 722ca8af43d7d61b08723a1153e402b4100ce9d2 (diff) |
fix some constants
Diffstat (limited to 'scripts/mtmoon3.asm')
-rwxr-xr-x | scripts/mtmoon3.asm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/mtmoon3.asm b/scripts/mtmoon3.asm index e86d6d37..aaa29825 100755 --- a/scripts/mtmoon3.asm +++ b/scripts/mtmoon3.asm @@ -493,7 +493,8 @@ MtMoon3Text1: TX_ASM CheckEvent EVENT_BEAT_MT_MOON_EXIT_SUPER_NERD jr z, .asm_4a02f - and $81 ; CheckEitherEventSetReuseA EVENT_GOT_DOME_FOSSIL, EVENT_GOT_HELIX_FOSSIL + ; CheckEitherEventSetReuseA EVENT_GOT_DOME_FOSSIL, EVENT_GOT_HELIX_FOSSIL + and (1 << (EVENT_GOT_DOME_FOSSIL % 8)) | (1 << (EVENT_GOT_HELIX_FOSSIL % 8)) jr nz, .asm_4a057 ld hl, MtMoon3Text_4a116 call PrintText |