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_cook.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'internal/game/cmd_cook.go') diff --git a/internal/game/cmd_cook.go b/internal/game/cmd_cook.go index b27b293..9b76a84 100644 --- a/internal/game/cmd_cook.go +++ b/internal/game/cmd_cook.go @@ -102,6 +102,10 @@ func (g *Game) showCookMenu(sess *net.Session, p *player.Player, allRecipes []ac } if len(entries) == 1 { + if p.OptionBool("cook_all") { + g.startProductionFromRecipe(sess, p, &entries[0].Recipe, 0) + return + } g.promptHowMany(sess, entries[0].Recipe.ID) return } -- cgit v1.2.3