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/action_state.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'internal/game/action_state.go') diff --git a/internal/game/action_state.go b/internal/game/action_state.go index 26c22f3..4510afd 100644 --- a/internal/game/action_state.go +++ b/internal/game/action_state.go @@ -20,6 +20,7 @@ const ( ActionResting ActionType = "resting" ActionWalking ActionType = "walking" ActionProducing ActionType = "producing" + ActionFletching ActionType = "fletching" ActionEating ActionType = "eating" ) @@ -68,6 +69,8 @@ func (a *ActionState) Description() string { return "walking somewhere with a purpose!" case ActionProducing: return a.Verb + " some " + a.TargetName + case ActionFletching: + return "fletching " + a.TargetName case ActionEating: return "eating " + a.TargetName } -- cgit v1.2.3