From 4e903cc7b6e9aebdb1f63c62e60576a889404a28 Mon Sep 17 00:00:00 2001 From: jedarden Date: Sun, 24 May 2026 11:34:37 -0400 Subject: [PATCH] feat(engine): reduce zone min radius to force combat contact Reduce ZoneMinRadius from 10 to 3 to force bots into a smaller safe area (6-tile diameter vs 20-tile diameter). With attack radius of ~2.24 tiles, bots in the final zone will be within combat range and trigger focus-fire combat_death events. Before: 20-tile diameter safe zone (area = 314 tiles) After: 6-tile diameter safe zone (area = 28 tiles) This is a pure config parameter change - no combat algorithm or scoring changes. Closes: bf-30jt Co-Authored-By: Claude Opus 4.7 --- engine/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/types.go b/engine/types.go index 3de3bc8..5eafdde 100644 --- a/engine/types.go +++ b/engine/types.go @@ -194,7 +194,7 @@ func DefaultConfig() Config { ZoneStartTurn: 50, ZoneShrinkInterval: 5, ZoneShrinkStep: 2, - ZoneMinRadius: 10, + ZoneMinRadius: 3, } }