From 988b006a5bb9edb6465653566e7bdf8175347b8c Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Sat, 27 Jun 2026 16:50:41 -0400 Subject: feat: one-way map links, blocked paths on map, map grid startup validation, user colors for maps --- 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 bb97010..0c3014b 100644 --- a/internal/game/cmd_symbol.go +++ b/internal/game/cmd_symbol.go @@ -58,7 +58,7 @@ func (g *Game) executeSymbol(sess *net.Session, args []string, rawInput string) colorSpec := strings.Join(args, " ") spec := color.Parse(colorSpec) if spec.Empty() { - sess.WriteLine("Invalid color spec. Use a color number like 232 and/or bold/dim/underline.") + sess.WriteLine("Invalid color spec. Use a hex color code like FF and/or bold/dim/underline.") return } existing, ok := p.MapSymbols[p.RoomID] @@ -82,7 +82,7 @@ func (g *Game) executeSymbol(sess *net.Session, args []string, rawInput string) if colorSpec != "" { spec := color.Parse(colorSpec) if spec.Empty() { - sess.WriteLine("Invalid color spec. Use a color number like 232 and/or bold/dim/underline.") + sess.WriteLine("Invalid color spec. Use a hex color code like FF and/or bold/dim/underline.") return } } -- cgit v1.2.3