From 5e94f2eac018b669de06efa4a41faa9e8fca918c Mon Sep 17 00:00:00 2001 From: James Osborne Date: Sun, 24 May 2026 11:28:58 -0400 Subject: [PATCH] Expand GC V3 EP1 EXP denylist --- src/ReceiveSubcommands.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/ReceiveSubcommands.cc b/src/ReceiveSubcommands.cc index 1f8a704c..6740cbe2 100644 --- a/src/ReceiveSubcommands.cc +++ b/src/ReceiveSubcommands.cc @@ -3732,8 +3732,11 @@ static asio::awaitable dispatch_gc_v3_exp_patch(shared_ptr c) { for (size_t z = 0; z < num_exp_labels; z++) { // GC V3 EP1 mitigation: leave known-problem Forest/Hilde rows at 1x. - // Rows 5 and 52 have shown 0-damage behavior when boosted in GC EP1/TTF testing. - if ((l->episode == Episode::EP1) && ((z == 5) || (z == 52))) { + // Rows 5 and 52 fixed the first TTF Hilde; related block-offset rows are + // included for the Dragon-gate Hilde variants that still show 0-damage. + if ((l->episode == Episode::EP1) && + ((z == 5) || (z == 52) || (z == 56) || (z == 103) || + (z == 107) || (z == 154) || (z == 158))) { continue; }