Move processing for RAND_INF_WEIRD_EGG to trade item processing so it happens whenever you get the egg. (#5382)

Remove RSK check for garden entrance because access is still handled by `CanUse(RG_WEIRD_EGG)`.
This commit is contained in:
Malkierian
2025-04-11 12:49:34 -07:00
committed by GitHub
parent 698fca8862
commit f0f2157a4c
3 changed files with 4 additions and 5 deletions

View File

@@ -2434,6 +2434,9 @@ u8 Item_Give(PlayState* play, u8 item) {
}
} else {
Flags_SetRandomizerInf(item - ITEM_WEIRD_EGG + RAND_INF_CHILD_TRADES_HAS_WEIRD_EGG);
if (item == ITEM_WEIRD_EGG) {
Flags_SetRandomizerInf(RAND_INF_WEIRD_EGG);
}
}
}