aboutsummaryrefslogtreecommitdiff
path: root/internal/game/cmd_inventory.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-16 23:37:50 -0400
committerhistoria <[not public]>2026-06-16 23:37:50 -0400
commit389e307f205f9b7edf604fb9f86e1038ead736ef (patch)
tree595095b5877cc2b0513d31fb126303d8796cc311 /internal/game/cmd_inventory.go
parent085e728d22a3369bd110b77409914cfbe9ebe611 (diff)
downloadthehouseoficarus-389e307f205f9b7edf604fb9f86e1038ead736ef.tar.gz
feat: major xterm256 color overhaul, see worldbuilding docs.
Diffstat (limited to 'internal/game/cmd_inventory.go')
-rw-r--r--internal/game/cmd_inventory.go9
1 files changed, 3 insertions, 6 deletions
diff --git a/internal/game/cmd_inventory.go b/internal/game/cmd_inventory.go
index 7017b18..8684fcd 100644
--- a/internal/game/cmd_inventory.go
+++ b/internal/game/cmd_inventory.go
@@ -3,21 +3,19 @@ package game
import (
"fmt"
- "thirdcollapse/internal/net"
- "thirdcollapse/internal/player"
+ "thehouseoficarus/internal/net"
+ "thehouseoficarus/internal/player"
)
func (g *Game) doInventory(sess *net.Session) {
p := sess.Player.(*player.Player)
sess.WriteLine("")
- sess.WriteLine("Inventory (28 slots):")
+ sess.WriteLine(fmt.Sprintf("Inventory (%d free):", p.FreeSlots()))
- empty := 0
num := 0
for i := 0; i < 28; i++ {
slot := p.InvSlot(i)
if slot == nil {
- empty++
continue
}
num++
@@ -33,5 +31,4 @@ func (g *Game) doInventory(sess *net.Session) {
sess.WriteLine(fmt.Sprintf(" %2d) %s", num, coloredName))
}
}
- sess.WriteLine(fmt.Sprintf(" (%d empty slots)", empty))
}