diff --git a/cmd/rove/main.go b/cmd/rove/main.go index 17e35aa..cf47692 100644 --- a/cmd/rove/main.go +++ b/cmd/rove/main.go @@ -217,10 +217,11 @@ func InnerMain(command string, args ...string) error { Bearing: args[i], }, ) - case "stash": + default: + // By default just use the command literally commands = append(commands, &rove.Command{ - Command: game.CommandStash, + Command: args[i], }, ) }