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/hacking/wumpus.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/game/hacking/wumpus.go') diff --git a/internal/game/hacking/wumpus.go b/internal/game/hacking/wumpus.go index 91b9243..1f0a434 100644 --- a/internal/game/hacking/wumpus.go +++ b/internal/game/hacking/wumpus.go @@ -218,16 +218,16 @@ func (w *WumpusGame) roomDesc() string { for _, a := range dodecahedron[cur] { if a == w.wumpus { - sb.WriteString("{196}You detect corrupted data nearby...{/}\n") + sb.WriteString("{C4}You detect corrupted data nearby...{/}\n") } for _, p := range w.pits { if a == p { - sb.WriteString("{208}You sense a void in the network...{/}\n") + sb.WriteString("{D0}You sense a void in the network...{/}\n") } } for _, i := range w.ice { if a == i { - sb.WriteString("{226}You hear static crackling...{/}\n") + sb.WriteString("{E2}You hear static crackling...{/}\n") } } } -- cgit v1.2.3