aboutsummaryrefslogtreecommitdiff
path: root/internal/game/cmd_symbol.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-27 17:26:23 -0400
committerhistoria <[not public]>2026-06-27 17:26:23 -0400
commit83f8f5447ec3baf85314ce7343f0e339d28bcc15 (patch)
treebf01d0da4eb7b72e0fd410a74fc0ed6d2bc42232 /internal/game/cmd_symbol.go
parent988b006a5bb9edb6465653566e7bdf8175347b8c (diff)
downloadthehouseoficarus-83f8f5447ec3baf85314ce7343f0e339d28bcc15.tar.gz
refactor: removed some redundant new map code
Diffstat (limited to 'internal/game/cmd_symbol.go')
-rw-r--r--internal/game/cmd_symbol.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/game/cmd_symbol.go b/internal/game/cmd_symbol.go
index 0c3014b..b18f3f7 100644
--- a/internal/game/cmd_symbol.go
+++ b/internal/game/cmd_symbol.go
@@ -28,7 +28,7 @@ func (g *Game) executeSymbol(sess *net.Session, args []string, rawInput string)
return
}
- // ponytail: extract symbol char from rawInput to preserve case, since
+ // extract symbol char from rawInput to preserve case, since
// handleGameCommand lowercases args before dispatch (same pattern as say).
char := args[0]
if idx := strings.Index(strings.ToLower(rawInput), "symbol"); idx >= 0 {
@@ -54,7 +54,7 @@ func (g *Game) executeSymbol(sess *net.Session, args []string, rawInput string)
if !cleared {
r, size := utf8.DecodeRuneInString(char)
if size == 0 || size != len(char) || r == utf8.RuneError {
- // ponytail: color-only mode — args are a color spec, keep existing char
+ // color-only mode — args are a color spec, keep existing char
colorSpec := strings.Join(args, " ")
spec := color.Parse(colorSpec)
if spec.Empty() {