aboutsummaryrefslogtreecommitdiff
path: root/internal/game/action_state.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/game/action_state.go')
-rw-r--r--internal/game/action_state.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/game/action_state.go b/internal/game/action_state.go
index 8db4a7b..280dd56 100644
--- a/internal/game/action_state.go
+++ b/internal/game/action_state.go
@@ -18,6 +18,7 @@ const (
ActionDropping ActionType = "dropping"
ActionSearching ActionType = "searching"
ActionResting ActionType = "resting"
+ ActionWalking ActionType = "walking"
)
type ActionState struct {
@@ -61,6 +62,8 @@ func (a *ActionState) Description() string {
return "digging through a " + a.TargetName
case ActionResting:
return "resting"
+ case ActionWalking:
+ return "walking somewhere with a purpose!"
}
return ""
}