diff options
author | GriffinR <griffin.richards@comcast.net> | 2019-09-15 23:47:07 -0400 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-09-16 19:44:47 -0500 |
commit | 06af24bce58b9285166d27fc371ad3c3dbb63a29 (patch) | |
tree | dbe13cafb7adfe4808042f3d77f30c2d2a83e102 /asm/macros | |
parent | 340c4e1411fa2aea8345d6f9af75577644ab8b9b (diff) |
Use misc ScrCmd constants
Diffstat (limited to 'asm/macros')
-rw-r--r-- | asm/macros/event.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/asm/macros/event.inc b/asm/macros/event.inc index bf1b8ce76..b6ca83596 100644 --- a/asm/macros/event.inc +++ b/asm/macros/event.inc @@ -902,15 +902,15 @@ .4byte \text .endm - @ Gives the player one of the specified (species) Pokemon at level level holding item. The unknown arguments should all be zeroes. - .macro givemon species:req, level:req, item:req, unknown1:req, unknown2:req, unknown3:req + @ Gives the player one of the specified (species) Pokemon at level level holding item. The trailing 0s are unused parameters + .macro givemon species:req, level:req, item:req .byte 0x79 .2byte \species .byte \level .2byte \item - .4byte \unknown1 - .4byte \unknown2 - .byte \unknown3 + .4byte 0x0 + .4byte 0x0 + .byte 0 .endm .macro giveegg species:req |