mirror of https://github.com/pret/pokeemerald.git
Small clarification in the comment of the getseenmon and getcaughtmon macros, because why not
parent
bcd58c9105
commit
819893508d
|
@ -97,12 +97,14 @@ These commands will check the state of either the Seen or the Caught Pokédex fl
|
||||||
|
|
||||||
```c
|
```c
|
||||||
@ Checks the state of the Pokédex Seen flag of the specified Pokemon
|
@ Checks the state of the Pokédex Seen flag of the specified Pokemon
|
||||||
|
@ The result is stored in VAR_RESULT
|
||||||
.macro getseenmon species:req
|
.macro getseenmon species:req
|
||||||
setvar VAR_TEMP_1, \species
|
setvar VAR_TEMP_1, \species
|
||||||
specialvar VAR_RESULT, GetSeenMon
|
specialvar VAR_RESULT, GetSeenMon
|
||||||
.endm
|
.endm
|
||||||
|
|
||||||
@ Checks the state of the Pokédex Caught flag of the specified Pokemon
|
@ Checks the state of the Pokédex Caught flag of the specified Pokemon
|
||||||
|
@ The result is stored in VAR_RESULT
|
||||||
.macro getcaughtmon species:req
|
.macro getcaughtmon species:req
|
||||||
setvar VAR_TEMP_1, \species
|
setvar VAR_TEMP_1, \species
|
||||||
specialvar VAR_RESULT, GetSeenMon
|
specialvar VAR_RESULT, GetSeenMon
|
||||||
|
|
Loading…
Reference in New Issue