diff options
| author | historia <[not public]> | 2026-06-16 04:17:43 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-16 04:17:43 -0400 |
| commit | 085e728d22a3369bd110b77409914cfbe9ebe611 (patch) | |
| tree | eeb88cb1ceb91cc9ea2b5a1877c3c66328fab503 /internal/game/action.go | |
| parent | 43f21aabae8924f35c12c8485e690aeefe0089fb (diff) | |
| download | thehouseoficarus-085e728d22a3369bd110b77409914cfbe9ebe611.tar.gz | |
feat: recipe system, combining items, cooking skill
Diffstat (limited to 'internal/game/action.go')
| -rw-r--r-- | internal/game/action.go | 2 |
1 files changed, 2 insertions, 0 deletions
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) |
