From 726997d799edc388cd448e978d5bb0755aaa551c Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Tue, 7 Jul 2026 16:46:32 -0400 Subject: feat: bitpacked and base64 encoded VisitedRooms in player YAML to keep the file human readable --- internal/game/cmd_score.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/game/cmd_score.go') diff --git a/internal/game/cmd_score.go b/internal/game/cmd_score.go index b493e80..59cedb1 100644 --- a/internal/game/cmd_score.go +++ b/internal/game/cmd_score.go @@ -174,7 +174,7 @@ func (g *Game) doScore(sess *net.Session) { sep() stats := p.Stats statsLine := fmt.Sprintf("Rooms Explored: %d Kills: %d Deaths: %d", - len(stats.RoomsVisited), stats.TotalKills, stats.Deaths) + stats.RoomsVisited.Len(), stats.TotalKills, stats.Deaths) content(statsLine) content(fmt.Sprintf("APS Nodes Found: %d", len(getKnownApsNodes(p)))) -- cgit v1.2.3