aboutsummaryrefslogtreecommitdiff
path: root/internal/game/hacking/wumpus.go
diff options
context:
space:
mode:
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")
}
}
}