From e5324c756214832ce29253441f986312ec38aec1 Mon Sep 17 00:00:00 2001 From: gymnast86 Date: Fri, 5 Jun 2026 22:58:58 -0700 Subject: [PATCH] remove old comments --- src/d/d_item.cpp | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/src/d/d_item.cpp b/src/d/d_item.cpp index 07601b22ae..bdc70ddd21 100644 --- a/src/d/d_item.cpp +++ b/src/d/d_item.cpp @@ -1278,21 +1278,6 @@ void item_func_SMALL_KEY() { void item_func_KAKERA_HEART() { dComIfGp_setItemMaxLifeCount(1); -#if TARGET_PC - if (randomizer_IsActive()) { - // TODO rando - /* - Pasting rando code until the framework has been updated - uint8_t maxLife = libtp::tp::d_com_inf_game::dComIfG_gameInfo.save.save_file.player.player_status_a.maxHealth + 1; - - // Check if we have enough hearts to break the barrier. - randoPtr->checkSetHCBarrierFlag(rando::HC_Hearts, maxLife); - - // Check if we have enough hearts to unlock the BK check. - randoPtr->checkSetHCBkFlag(rando::HC_BK_Hearts, maxLife); - */ - } -#endif } void item_func_UTUWA_HEART() { @@ -2191,20 +2176,9 @@ void item_func_FUSED_SHADOW_3() { } void item_func_MIRROR_PIECE_1() { - if (randomizer_IsActive()) { dComIfGs_onCollectMirror(0); - // TODO rando - /* - Adding rando code until framework is implemented - // Check if the requirement for the HC barrier is set to shards, and if so, set the flag - rando::gRandomizer->checkSetHCBarrierFlag(rando::HC_Mirror_Shards, 1); - - // Check if the requirement for the HC BK is set to shards, and if so, set the flag - rando::gRandomizer->checkSetHCBkFlag(rando::HC_BK_Mirror_Shards, 1); - */ } - } #endif @@ -2212,15 +2186,6 @@ void item_func_POU_SPIRIT() { #if TARGET_PC if (randomizer_IsActive()) { dComIfGs_addPohSpiritNum(); - // TODO rando - /* - Adding rando code until framework is implemented - // Check if the HC barrier requires poes and if we have enough poe souls to set the flag. - randoPtr->checkSetHCBarrierFlag(rando::HC_Poe_Souls, *poeCountPtr); - - // Check if the HC bk check requires poes and if we have enough poe souls to unlock the check. - randoPtr->checkSetHCBkFlag(rando::HC_BK_Poe_Souls, *poeCountPtr); - */ } #endif }