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; }