From 17e7725f252c7f5d3be2e9c37d62751c631f196f Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Thu, 18 Jun 2026 18:50:54 -0400 Subject: feat: fletching added including zero-time bolt feathering, which probably will break lots of things --- internal/game/cmd_smelt.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'internal/game/cmd_smelt.go') diff --git a/internal/game/cmd_smelt.go b/internal/game/cmd_smelt.go index 1cd5436..a5bbc06 100644 --- a/internal/game/cmd_smelt.go +++ b/internal/game/cmd_smelt.go @@ -94,6 +94,10 @@ func (g *Game) showSmeltMenu(sess *net.Session, p *player.Player, allRecipes []a } if len(entries) == 1 { + if p.OptionBool("smelt_all") { + g.startProductionFromRecipe(sess, p, &entries[0].Recipe, 0) + return + } g.promptHowMany(sess, entries[0].Recipe.ID) return } -- cgit v1.2.3