From 5b9a75a1520a198c9c6b1f1f55e05c9f4aab5629 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Mon, 22 Jun 2026 04:24:11 -0400 Subject: feat: map now only reveals with exploration. players can set custom map symbols. --- internal/game/cmd_option.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/game/cmd_option.go') diff --git a/internal/game/cmd_option.go b/internal/game/cmd_option.go index ff7725c..a5bf11c 100644 --- a/internal/game/cmd_option.go +++ b/internal/game/cmd_option.go @@ -45,14 +45,14 @@ func (g *Game) doOption(sess *net.Session, input string) { name := strings.ToLower(parts[0]) def := player.GetOptionDef(name) if def == nil { - sess.WriteLine(fmt.Sprintf("\nUnknown option: %s", name)) + sess.WriteLine(fmt.Sprintf("Unknown option: %s", name)) return } if len(parts) == 1 { val := formatOptionValue(p, def) valid := formatValidValues(def) - sess.WriteLine(fmt.Sprintf("\n%s = %s [%s]", def.Name, val, valid)) + sess.WriteLine(fmt.Sprintf("%s = %s [%s]", def.Name, val, valid)) sess.WriteLine(fmt.Sprintf(" %s", def.Description)) return } @@ -61,7 +61,7 @@ func (g *Game) doOption(sess *net.Session, input string) { parsed, ok := parseOptionValue(def, value) if !ok { valid := formatValidValues(def) - sess.WriteLine(fmt.Sprintf("\nInvalid value for %s: %s [%s]", def.Name, value, valid)) + sess.WriteLine(fmt.Sprintf("Invalid value for %s: %s [%s]", def.Name, value, valid)) return } -- cgit v1.2.3