aboutsummaryrefslogtreecommitdiff
path: root/internal/game/cmd_aps.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/cmd_aps.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/cmd_aps.go')
-rw-r--r--internal/game/cmd_aps.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/internal/game/cmd_aps.go b/internal/game/cmd_aps.go
index 265277a..5e209a6 100644
--- a/internal/game/cmd_aps.go
+++ b/internal/game/cmd_aps.go
@@ -129,11 +129,11 @@ func displayApsNodes(g *Game, sess *net.Session, p *player.Player, known []int)
for i, info := range infos {
distStr := strconv.Itoa(info.Distance)
if info.Distance == 0 {
- distStr = color.Render(mode, color.Parse("82"), "here")
+ distStr = color.Render(mode, color.Parse("52"), "here")
}
rows[i] = []string{
- color.Render(mode, color.Parse("245"), fmt.Sprintf("#%d", info.ID)),
- color.Render(mode, color.Parse("75"), info.Name),
+ color.Render(mode, color.Parse("F5"), fmt.Sprintf("#%d", info.ID)),
+ color.Render(mode, color.Parse("4B"), info.Name),
distStr,
}
}
@@ -141,9 +141,9 @@ func displayApsNodes(g *Game, sess *net.Session, p *player.Player, known []int)
t := &ui.Table{
Title: "APS Datapad",
Columns: []string{
- color.Render(mode, color.Parse("245"), "Room"),
- color.Render(mode, color.Parse("75"), "Name"),
- color.Render(mode, color.Parse("230"), "Distance"),
+ color.Render(mode, color.Parse("F5"), "Room"),
+ color.Render(mode, color.Parse("4B"), "Name"),
+ color.Render(mode, color.Parse("E6"), "Distance"),
},
Rows: rows,
}