diff options
Diffstat (limited to 'internal/game/cmd_score.go')
| -rw-r--r-- | internal/game/cmd_score.go | 2 |
1 files changed, 1 insertions, 1 deletions
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)))) |
