diff options
| author | historia <[not public]> | 2026-06-21 22:19:17 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-21 22:19:17 -0400 |
| commit | a3ae1e6aad696f584d138d9363c05dedff136a65 (patch) | |
| tree | 81e615f7227bc9d1ec79ceefc7311ecde917b074 /internal/game/cmd_score.go | |
| parent | 84072ffe6365ad57c4976e9272762aa6db41de7e (diff) | |
| download | thehouseoficarus-a3ae1e6aad696f584d138d9363c05dedff136a65.tar.gz | |
feat: safespot system implemented
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 d0302c2..9f3c786 100644 --- a/internal/game/cmd_score.go +++ b/internal/game/cmd_score.go @@ -98,7 +98,7 @@ func (g *Game) doScore(sess *net.Session) { creditsStr := g.colorize(sess, "credits_pickup", formatInt(p.Credits)) styleStr := color.Render(mode, color.Parse("75"), fmt.Sprintf("Style: %s", p.AttackStyle)) - invStr := fmt.Sprintf("Inv: %d/28 used", 28-p.FreeSlots()) + invStr := fmt.Sprintf("Inv: %d/28", 28-p.FreeSlots()) row2 := padded("Credits: "+creditsStr, 20) + padded(styleStr, 24) + invStr content(row2) |
