mirror of
https://github.com/zeldaret/mm.git
synced 2026-06-17 06:47:43 -04:00
z_kaleido_collect.c (1 non-matching) and Mostly Documented (Pause Menu Quest Page) (#1108)
* import quest docs * cleanup * eol * temp change to non-eq * more missed stuff * fix questVtx * PR suggestions * adjust comment * missed two * PR Suggestions
This commit is contained in:
@@ -1172,7 +1172,9 @@ u8 Item_Give(PlayState* play, u8 item) {
|
||||
}
|
||||
|
||||
if (item == ITEM_SKULL_TOKEN) {
|
||||
SET_QUEST_ITEM(item - ITEM_SKULL_TOKEN + QUEST_SKULL_TOKEN);
|
||||
//! @bug: Sets QUEST_QUIVER instead of QUEST_SKULL_TOKEN
|
||||
// Setting `QUEST_SKULL_TOKEN` will result in misplaced digits on the pause menu - Quest Status page.
|
||||
SET_QUEST_ITEM(item - ITEM_SKULL_TOKEN + QUEST_QUIVER);
|
||||
Inventory_IncrementSkullTokenCount(play->sceneId);
|
||||
return ITEM_NONE;
|
||||
|
||||
@@ -1446,7 +1448,7 @@ u8 Item_Give(PlayState* play, u8 item) {
|
||||
return ITEM_NONE;
|
||||
|
||||
} else if ((item >= ITEM_REMAINS_ODOLWA) && (item <= ITEM_REMAINS_TWINMOLD)) {
|
||||
SET_QUEST_ITEM(item - ITEM_REMAINS_ODOLWA + QUEST_REMAINS_ODOWLA);
|
||||
SET_QUEST_ITEM(item - ITEM_REMAINS_ODOLWA + QUEST_REMAINS_ODOLWA);
|
||||
return ITEM_NONE;
|
||||
|
||||
} else if (item == ITEM_RECOVERY_HEART) {
|
||||
|
||||
Reference in New Issue
Block a user