diff options
author | yenatch <yenatch@gmail.com> | 2017-12-24 17:54:24 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2017-12-24 17:54:24 -0500 |
commit | 0b8b6f9259bedacad55bb4667de5b2bbe6eafda7 (patch) | |
tree | 4706c5554849a15bb91b79d4f71edf97f0df56dc /maps | |
parent | e400fe5142731422b0f542749d913d569997159e (diff) |
Use PSYCHIC_M for the Psychic TM.
Fixes #385
Diffstat (limited to 'maps')
-rw-r--r-- | maps/CeladonGameCornerPrizeRoom.asm | 4 | ||||
-rw-r--r-- | maps/MrPsychicsHouse.asm | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/maps/CeladonGameCornerPrizeRoom.asm b/maps/CeladonGameCornerPrizeRoom.asm index b23379878..d40f3eecc 100644 --- a/maps/CeladonGameCornerPrizeRoom.asm +++ b/maps/CeladonGameCornerPrizeRoom.asm @@ -47,10 +47,10 @@ CeladonPrizeRoom_tmcounterloop: .psychic checkcoins 3500 if_equal $2, CeladonPrizeRoom_notenoughcoins - itemtotext TM_PSYCHIC, $0 + itemtotext TM_PSYCHIC_M, $0 scall CeladonPrizeRoom_askbuy iffalse CeladonPrizeRoom_cancel - giveitem TM_PSYCHIC + giveitem TM_PSYCHIC_M iffalse CeladonPrizeRoom_notenoughroom takecoins 3500 jump CeladonPrizeRoom_purchased diff --git a/maps/MrPsychicsHouse.asm b/maps/MrPsychicsHouse.asm index 0b0c09115..77f82b91e 100644 --- a/maps/MrPsychicsHouse.asm +++ b/maps/MrPsychicsHouse.asm @@ -15,7 +15,7 @@ MrPsychic: iftrue .AlreadyGotItem writetext MrPsychicText1 buttonsound - verbosegiveitem TM_PSYCHIC + verbosegiveitem TM_PSYCHIC_M iffalse .Done setevent EVENT_GOT_TM29_PSYCHIC .AlreadyGotItem: |