diff options
| author | Jordan Longstaff <JordanLongstaff@users.noreply.github.com> | 2024-12-12 10:43:58 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-12 10:43:58 -0500 |
| commit | c57dff4f78dbeba3defde8b9727628e3abb03c52 (patch) | |
| tree | eddc35fc5cff5a13853e3cd0af18c1c0ecedf15a /src/code | |
| parent | c780c4e147ddeb56c59fa44e2d9ccc7d9fbc00b8 (diff) | |
Rename item get flags for Forest Stage upgrades (#2333)
* Rename item get flags for Forest Stage upgrades
* Fix Jenkins build error
* Document shared flag bug
* Rename shared flag
* Massive documenting comments
* GDI - remove one trailing whitespace
Diffstat (limited to 'src/code')
| -rw-r--r-- | src/code/z_parameter.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/code/z_parameter.c b/src/code/z_parameter.c index e6e451ee3..7666b1ff0 100644 --- a/src/code/z_parameter.c +++ b/src/code/z_parameter.c @@ -1828,7 +1828,8 @@ u8 Item_Give(PlayState* play, u8 item) { } } else if ((item >= ITEM_WEIRD_EGG) && (item <= ITEM_CLAIM_CHECK)) { if (item == ITEM_POACHERS_SAW) { - SET_ITEMGETINF(ITEMGETINF_1F); + //! @bug Setting this shared flag makes getting the Deku Nut upgrade impossible + SET_ITEMGETINF(ITEMGETINF_FOREST_STAGE_NUT_UPGRADE); } temp = INV_CONTENT(item); |
