From 4cc1ddcd185509080b4b3e15d1646567edd51c9d Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Mon, 15 Jun 2026 02:57:35 -0400 Subject: removed game speed for being broken and an antifeature anyway. added color support. --- internal/game/action_default_target.go | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'internal/game/action_default_target.go') diff --git a/internal/game/action_default_target.go b/internal/game/action_default_target.go index 45060cc..b3825ca 100644 --- a/internal/game/action_default_target.go +++ b/internal/game/action_default_target.go @@ -5,15 +5,7 @@ import ( ) func verbToSkill(verb string) string { - switch verb { - case "mine": - return "mining" - case "chop", "cut": - return "woodcutting" - case "fish": - return "fishing" - } - return "" + return verbSkill[verb] } func (g *Game) resolveDefaultTarget(roomID int, verb string) string { -- cgit v1.2.3