aboutsummaryrefslogtreecommitdiff
path: root/internal/game/hacking/wumpus.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-27 16:50:41 -0400
committerhistoria <[not public]>2026-06-27 16:50:41 -0400
commit988b006a5bb9edb6465653566e7bdf8175347b8c (patch)
tree3a1fceff2ee80c11b5dafcc49c13ababe021e880 /internal/game/hacking/wumpus.go
parent1cab9ca20e24742f770a676f84e4ed9f1636f297 (diff)
downloadthehouseoficarus-988b006a5bb9edb6465653566e7bdf8175347b8c.tar.gz
feat: one-way map links, blocked paths on map, map grid startup validation, user colors for maps
Diffstat (limited to 'internal/game/hacking/wumpus.go')
-rw-r--r--internal/game/hacking/wumpus.go6
1 files changed, 3 insertions, 3 deletions
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")
}
}
}