From 1aa33a794035d386a0e16c30d3262836d647cdd4 Mon Sep 17 00:00:00 2001 From: Garrett Cox Date: Fri, 2 Sep 2022 14:17:45 -0500 Subject: [PATCH] Remove comments in OTRGlobals --- soh/soh/OTRGlobals.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/soh/soh/OTRGlobals.cpp b/soh/soh/OTRGlobals.cpp index d812e8824..72d08b4e8 100644 --- a/soh/soh/OTRGlobals.cpp +++ b/soh/soh/OTRGlobals.cpp @@ -1639,7 +1639,6 @@ extern "C" GetItemEntry Randomizer_GetRandomizedItem(GetItemID ogId, s16 actorId } s16 itemID = OTRGlobals::Instance->gRandomizer->GetRandomizedItemId(ogId, actorId, actorParams, sceneNum); - // This feels awkward, maybe in the future each mod will have it's own obtainability check if (OTRGlobals::Instance->gRandomizer->GetItemObtainabilityFromRandomizerCheck(randomizerCheck) != CAN_OBTAIN) { return ItemTable_RetrieveEntry(MOD_NONE, GI_RUPEE_BLUE); } @@ -1656,7 +1655,6 @@ extern "C" GetItemEntry Randomizer_GetItemFromKnownCheck(RandomizerCheck randomi } s16 itemID = OTRGlobals::Instance->gRandomizer->GetRandomizedItemIdFromKnownCheck(randomizerCheck, ogId); - // This feels awkward, maybe in the future each mod will have it's own obtainability check if (OTRGlobals::Instance->gRandomizer->GetItemObtainabilityFromRandomizerCheck(randomizerCheck) != CAN_OBTAIN) { return ItemTable_RetrieveEntry(MOD_NONE, GI_RUPEE_BLUE); }