From 085e728d22a3369bd110b77409914cfbe9ebe611 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Tue, 16 Jun 2026 04:17:43 -0400 Subject: feat: recipe system, combining items, cooking skill --- internal/game/action.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'internal/game/action.go') diff --git a/internal/game/action.go b/internal/game/action.go index 26484e0..3857030 100644 --- a/internal/game/action.go +++ b/internal/game/action.go @@ -224,6 +224,8 @@ func (g *Game) AdvanceActions() { g.advanceStoke(sess, p) case "search": g.advanceSearch(sess, p) + case "cook": + g.advanceCook(sess, p) } if p.Action == nil { g.writePrompt(sess) -- cgit v1.2.3