From 114fe642fc03ee421d120684c6c9a64c99a806b0 Mon Sep 17 00:00:00 2001 From: James Osborne Date: Sun, 24 May 2026 11:20:12 -0400 Subject: [PATCH] Skip problematic GC V3 EP1 EXP rows --- src/ReceiveSubcommands.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ReceiveSubcommands.cc b/src/ReceiveSubcommands.cc index 1c8b0401..1f8a704c 100644 --- a/src/ReceiveSubcommands.cc +++ b/src/ReceiveSubcommands.cc @@ -3731,6 +3731,12 @@ static asio::awaitable dispatch_gc_v3_exp_patch(shared_ptr c) { auto fn = make_shared(*base_fn); 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))) { + continue; + } + string label = std::format("exp_{:03}", z); size_t offset = fn->label_offsets.at(label); if (offset > fn->code.size() - 4) {