diff options
Diffstat (limited to 'internal/game/action_state.go')
| -rw-r--r-- | internal/game/action_state.go | 3 |
1 files changed, 3 insertions, 0 deletions
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 } |
