From a19e6b6ab01670a5932308c7bd0e0e5eed8cbcad Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Fri, 12 Jun 2026 23:52:06 -0400 Subject: feat: firemaking skill implemented. overhauled how ground items and despawn are handled. --- internal/game/action.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'internal/game/action.go') diff --git a/internal/game/action.go b/internal/game/action.go index 018c4fb..7d2549f 100644 --- a/internal/game/action.go +++ b/internal/game/action.go @@ -190,6 +190,10 @@ func (g *Game) AdvanceActions() { g.advanceGather(sess, p) case "use": g.advanceUse(sess, p) + case "burn": + g.advanceBurn(sess, p) + case "stoke": + g.advanceStoke(sess, p) } } } -- cgit v1.2.3