summaryrefslogtreecommitdiff
path: root/soh
diff options
context:
space:
mode:
authorPhilip Dubé <159546+serprex@users.noreply.github.com>2026-07-13 15:32:37 +0000
committerGitHub <noreply@github.com>2026-07-13 15:32:37 +0000
commit585530f68d8c3c94fef4e08d8616aa06f1d19feb (patch)
treed712986e9bfe91ad4b0947660d03dfd0b72da87c /soh
parent852fb86cf297a2411db9c6b49456b3bd59abb341 (diff)
Fix mixed up StartingItemGive between Weird Egg & Zelda's Letter (#6921)
Diffstat (limited to 'soh')
-rw-r--r--soh/soh/Enhancements/randomizer/savefile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/soh/soh/Enhancements/randomizer/savefile.cpp b/soh/soh/Enhancements/randomizer/savefile.cpp
index 646f787a5..8b82b8834 100644
--- a/soh/soh/Enhancements/randomizer/savefile.cpp
+++ b/soh/soh/Enhancements/randomizer/savefile.cpp
@@ -575,9 +575,9 @@ extern "C" void Randomizer_InitSaveFile() {
GetItemEntry getItemEntry = Randomizer_GetItemFromKnownCheck(RC_SONG_FROM_IMPA, (GetItemID)RG_ZELDAS_LULLABY);
StartingItemGive(getItemEntry, RC_SONG_FROM_IMPA);
getItemEntry = Randomizer_GetItemFromKnownCheck(RC_HC_MALON_EGG, (GetItemID)RG_WEIRD_EGG);
- StartingItemGive(getItemEntry, RC_HC_ZELDAS_LETTER);
- getItemEntry = Randomizer_GetItemFromKnownCheck(RC_HC_ZELDAS_LETTER, (GetItemID)RG_ZELDAS_LETTER);
StartingItemGive(getItemEntry, RC_HC_MALON_EGG);
+ getItemEntry = Randomizer_GetItemFromKnownCheck(RC_HC_ZELDAS_LETTER, (GetItemID)RG_ZELDAS_LETTER);
+ StartingItemGive(getItemEntry, RC_HC_ZELDAS_LETTER);
// Malon/Talon back at ranch.
Flags_SetEventChkInf(EVENTCHKINF_OBTAINED_POCKET_EGG);