diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-06-23 06:36:39 -0500 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2018-06-23 16:00:17 -0500 |
commit | f14c3be5e836ffffd65dbb54a37748a4b15620b3 (patch) | |
tree | 9b1e6e0a32b926063a18db987193d2cafd530c5d /src/party_menu.c | |
parent | 65b5fe5f00a8d7381c1e3c5d7c3f4537459988c2 (diff) |
Document field_effect_helpers and other misc. things
Diffstat (limited to 'src/party_menu.c')
-rw-r--r-- | src/party_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/party_menu.c b/src/party_menu.c index a4b7b0ffa..52c637879 100644 --- a/src/party_menu.c +++ b/src/party_menu.c @@ -4456,7 +4456,7 @@ bool8 IsBlueYellowRedFlute(u16 item) return FALSE; } -void sub_8070048(u8 taskId, u16 item, TaskFunc func) +void DoSacredAshItemEffect(u8 taskId, u16 item, TaskFunc func) { ewram1C000.unk10 = func; ewram1C000.unk4 = taskId; @@ -4473,7 +4473,7 @@ void sub_8070088(u8 taskId) u8 taskId2; gTasks[taskId].func = TaskDummy; - if (GetMonData(&gPlayerParty[ewram1C000.primarySelectedMonIndex], MON_DATA_SPECIES) == 0) + if (GetMonData(&gPlayerParty[ewram1C000.primarySelectedMonIndex], MON_DATA_SPECIES) == SPECIES_NONE) { gTasks[taskId].func = sub_80701DC; } |