disambiguate cremate_corpse + quarry_stone

MCP probe surfaced that both manual_labor recipes were showing at
both Pyre and Quarry workbenches (empty target_workbench). Set:
  cremate_corpse.target_workbench = &"pyre"
  quarry_stone.target_workbench = &"quarry"

Now Pyre offers only cremate_corpse, Quarry only quarry_stone.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
megaproxy 2026-05-16 19:52:41 +01:00
parent 6789ca739f
commit 8a7584e411

View file

@ -110,6 +110,7 @@ static func cremate_corpse() -> Recipe:
r.output_type = Item.TYPE_ASH
r.work_ticks = 60 # ~3 sim seconds at 1×
r.required_skill = &"manual_labor"
r.target_workbench = &"pyre"
r.skill_threshold = 0
return r
@ -124,6 +125,7 @@ static func quarry_stone() -> Recipe:
r.output_type = Item.TYPE_STONE
r.work_ticks = 300
r.required_skill = &"manual_labor"
r.target_workbench = &"quarry"
r.skill_threshold = 0
return r