From 83f8f5447ec3baf85314ce7343f0e339d28bcc15 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Sat, 27 Jun 2026 17:26:23 -0400 Subject: refactor: removed some redundant new map code --- internal/game/cmd_symbol.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/game/cmd_symbol.go') 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() { -- cgit v1.2.3