diff options
| author | engineer124 <47598039+engineer124@users.noreply.github.com> | 2022-10-12 23:39:39 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-13 04:39:39 +0100 |
| commit | f3db0299367c4dd7cf44ab9e12cf6c8b56d598ab (patch) | |
| tree | eb04b18ef915e478290d49a7ba4e1fa673e8918f /src/code/z_parameter.c | |
| parent | 868029b213128eaa24d0b80f854f71704cfafe8c (diff) | |
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
Diffstat (limited to 'src/code/z_parameter.c')
| -rw-r--r-- | src/code/z_parameter.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/code/z_parameter.c b/src/code/z_parameter.c index 4620dd816..d463edff3 100644 --- a/src/code/z_parameter.c +++ b/src/code/z_parameter.c @@ -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) { |
