From 445c4612cc5cf2c226f85894b6ad1e2419a374e2 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Mon, 15 Jun 2026 00:55:26 -0400 Subject: feat: walk command, improved tables and columns --- 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 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 "" } -- cgit v1.2.3