Consistently name Gift from Rauru (#4677)

This commit is contained in:
Pepper0ni 2024-12-13 19:29:32 +00:00 committed by GitHub
commit f66b234ce2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 9 additions and 9 deletions

View file

@ -559,7 +559,7 @@ void CheckTrackerItemReceive(GetItemEntry giEntry) {
SetCheckCollected(RC_TWINROVA);
return;
} else if (giEntry.itemId == ITEM_MEDALLION_LIGHT) {
SetCheckCollected(RC_GIFT_FROM_SAGES);
SetCheckCollected(RC_GIFT_FROM_RAURU);
return;
} else if (giEntry.itemId == ITEM_SONG_EPONA) {
SetCheckCollected(RC_SONG_FROM_MALON);
@ -1264,7 +1264,7 @@ bool IsCheckShuffled(RandomizerCheck rc) {
return (loc->GetQuest() == RCQUEST_BOTH ||
(loc->GetQuest() == RCQUEST_MQ && OTRGlobals::Instance->gRandoContext->GetDungeons()->GetDungeonFromScene(loc->GetScene())->IsMQ()) ||
(loc->GetQuest() == RCQUEST_VANILLA && OTRGlobals::Instance->gRandoContext->GetDungeons()->GetDungeonFromScene(loc->GetScene())->IsVanilla()) ||
rc == RC_GIFT_FROM_SAGES) && rc != RC_LINKS_POCKET;
rc == RC_GIFT_FROM_RAURU) && rc != RC_LINKS_POCKET;
}
return false;
}