From 0ea4eec5dd2122c6704216971eb1249276297867 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Fri, 19 Jun 2026 18:20:26 -0400 Subject: shop fixes, 'toggle' completely removed, movement speed increased --- internal/game/action_state.go | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'internal/game/action_state.go') diff --git a/internal/game/action_state.go b/internal/game/action_state.go index 55d3392..0ba3767 100644 --- a/internal/game/action_state.go +++ b/internal/game/action_state.go @@ -1,7 +1,5 @@ package game -import "fmt" - type ActionType string const ( @@ -11,7 +9,6 @@ const ( ActionMoving ActionType = "moving" ActionUsing ActionType = "using" ActionTalking ActionType = "talking" - ActionToggling ActionType = "toggling" ActionBurning ActionType = "burning" ActionStoking ActionType = "stoking" ActionPickingUp ActionType = "picking_up" @@ -23,9 +20,7 @@ const ( ActionFletching ActionType = "fletching" ActionEating ActionType = "eating" ActionCleaning ActionType = "cleaning" - ActionMixing ActionType = "mixing" ActionIdentifying ActionType = "identifying" - ActionTriggering ActionType = "triggering" ActionStealing ActionType = "stealing" ActionPlanting ActionType = "planting" ActionHarvesting ActionType = "harvesting_crop" @@ -63,8 +58,6 @@ func (a *ActionState) Description() string { return "using a " + a.TargetName case ActionTalking: return "talking to " + a.TargetName - case ActionToggling: - return fmt.Sprintf("pulling a %s", a.TargetName) case ActionBurning: return "trying to start a fire" case ActionStoking: @@ -87,12 +80,8 @@ func (a *ActionState) Description() string { return "eating " + a.TargetName case ActionCleaning: return "cleaning herbs" - case ActionMixing: - return "mixing " + a.TargetName case ActionIdentifying: return "identifying scrap at " + a.TargetName - case ActionTriggering: - return "triggering " + a.TargetName case ActionStealing: return "stealing from " + a.TargetName case ActionPlanting: -- cgit v1.2.3