From 7520998aca0783f6ec2f58824df4eea3e595b813 Mon Sep 17 00:00:00 2001 From: gymnast86 Date: Fri, 17 Apr 2026 11:20:06 -0700 Subject: [PATCH] Patch suits of armor to spawn regardless of boss flag value --- src/d/actor/d_a_e_md.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/d/actor/d_a_e_md.cpp b/src/d/actor/d_a_e_md.cpp index 19baf66f5f..b6bd2d2bec 100644 --- a/src/d/actor/d_a_e_md.cpp +++ b/src/d/actor/d_a_e_md.cpp @@ -396,7 +396,12 @@ inline int daE_MD_c::create() { int phase_state = dComIfG_resLoad(&mPhase, "E_MD"); if (phase_state == cPhs_COMPLEATE_e) { OS_REPORT("E_MD PARAM %x\n", fopAcM_GetParam(this)); +#if TARGET_PC + // We want the statues to spawn in rando, regardles of boss flag value. + if ((cDmr_SkipInfo != 0 || randomizer_IsActive()) && current.pos.z > -1500.0f) { +#else if (cDmr_SkipInfo != 0 && current.pos.z > -1500.0f) { +#endif return cPhs_ERROR_e; }