From 88dd4a2aae25d147f9983249e7ce5a7ced4a1a37 Mon Sep 17 00:00:00 2001 From: gymnast86 Date: Fri, 17 Apr 2026 14:44:39 -0700 Subject: [PATCH] Patch bo to prevent softlock if chest doesn't contain iron boots --- src/d/actor/d_a_npc_bouS.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/d/actor/d_a_npc_bouS.cpp b/src/d/actor/d_a_npc_bouS.cpp index 66a1cf02bc..1387a58ac3 100644 --- a/src/d/actor/d_a_npc_bouS.cpp +++ b/src/d/actor/d_a_npc_bouS.cpp @@ -1034,8 +1034,9 @@ bool daNpcBouS_c::wait(void* param_1) { mTurnMode = 0; } } - - if (!checkItemGet(dItemNo_HVY_BOOTS_e, 1) && dComIfGs_isTbox(2)) { + + // In randomizer, we don't want bo to try and talk to us once the chest has been opened. + if (IF_DUSK(!randomizer_IsActive() &&) !checkItemGet(dItemNo_HVY_BOOTS_e, 1) && dComIfGs_isTbox(2)) { mForcibleTalk = 1; }