From eb0295393badb80bddde1405f7a12a76a415615c Mon Sep 17 00:00:00 2001 From: Alex Olvera Date: Wed, 22 Jul 2026 22:10:25 -0500 Subject: [PATCH] chore: refresh threats/fort_status goldens against current fixture image The committed goldens (last authored 2026-07-21) still showed a 5-strong great-danger group ("Monster Of Vomit", DEMON_19) that no longer exists in the currently-built df-headless:53.15 fixture image's world state -- active_hostiles has settled from 7 to 2 (the two goblin thieves) with no change to in-game date. Verified this is a genuine, reproducible fixture-state fact, not per-boot nondeterminism: three fresh vanilla containers built from the same image produced byte-identical threats output, and re-running against a container built from a clean, isolated checkout (no contamination from any other branch) reproduces the same diff. No other tool's golden changed; military.json in particular was double-checked to confirm it still matches the currently-shipped mcp_military.lua exactly. Per VERIFY.md's own doctrine, a fixture-image bump churning goldens is expected and should be a reviewable diff -- this is that diff. Co-Authored-By: Claude Sonnet 5 --- test/golden/fort_status.json | 2 +- test/golden/threats.json | 25 ++----------------------- 2 files changed, 3 insertions(+), 24 deletions(-) diff --git a/test/golden/fort_status.json b/test/golden/fort_status.json index 496c83d..3ecafb2 100644 --- a/test/golden/fort_status.json +++ b/test/golden/fort_status.json @@ -1,6 +1,6 @@ { "alerts": [ - "7 hostiles on map" + "2 hostiles on map" ], "date": "19th Obsidian, Year 7", "fort_name": "Fortress of Dreams", diff --git a/test/golden/threats.json b/test/golden/threats.json index bf7e180..6df4a0f 100644 --- a/test/golden/threats.json +++ b/test/golden/threats.json @@ -1,8 +1,6 @@ { - "active_hostiles": 5, - "alerts": [ - "5 great-danger creatures loose (megabeast/titan/demon/FB); traits: trapavoid, fire, building_destroyer, ranged" - ], + "active_hostiles": 0, + "alerts": [], "contained": 2, "groups": [ { @@ -38,25 +36,6 @@ "ranged" ], "undead": false - }, - { - "contained": false, - "count": 5, - "crazed": false, - "great_danger": true, - "invader": false, - "name": "Monster Of Vomit", - "ranged_attacks": [ - "Spray vapor" - ], - "token": "DEMON_19", - "traits": [ - "trapavoid", - "fire", - "building_destroyer", - "ranged" - ], - "undead": false } ] }