diff options
author | yenatch <yenatch@gmail.com> | 2017-12-24 17:54:24 -0500 |
---|---|---|
committer | Ryan Tandy <ryan@nardis.ca> | 2019-10-12 12:04:27 -0700 |
commit | ceb336852dbe63fa20865f75d19ad7884bf97adc (patch) | |
tree | de060fba7d81bafd7186bd86aa33d8cf520c0b74 /maps | |
parent | c36771441c4b43ee37508ce284843269002c9c08 (diff) |
Use PSYCHIC_M for the Psychic TM.
[Ryan Tandy: adapted from pret/pokecrystal@0b8b6f9259bedacad55bb4667de5b2bbe6eafda7]
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 06211668..0ddca0a0 100644 --- a/maps/CeladonGameCornerPrizeRoom.asm +++ b/maps/CeladonGameCornerPrizeRoom.asm @@ -45,10 +45,10 @@ CeladonPrizeRoom_tmcounterloop: .psychic checkcoins 3500 ifequal HAVE_LESS, CeladonPrizeRoom_notenoughcoins - itemtotext TM_PSYCHIC, MEM_BUFFER_0 + itemtotext TM_PSYCHIC_M, MEM_BUFFER_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 264001ac..7f6511a8 100644 --- a/maps/MrPsychicsHouse.asm +++ b/maps/MrPsychicsHouse.asm @@ -13,7 +13,7 @@ MrPsychic: iftrue .AlreadyGotItem writetext MrPsychicText1 buttonsound - verbosegiveitem TM_PSYCHIC + verbosegiveitem TM_PSYCHIC_M iffalse .Done setevent EVENT_GOT_TM29_PSYCHIC .AlreadyGotItem: |