aboutsummaryrefslogtreecommitdiff
path: root/internal/game/cmd_get.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-07-18 03:40:02 -0400
committerhistoria <[not public]>2026-07-18 03:40:02 -0400
commitdb8ca1fe26a36b78074a424ae657b2cbb9b3af19 (patch)
tree9219f320de74f27cb5491e3cb6b0258c5713f0cb /internal/game/cmd_get.go
parent467944adfa41673a3758d9622873abbe7ae35a49 (diff)
downloadthehouseoficarus-db8ca1fe26a36b78074a424ae657b2cbb9b3af19.tar.gz
feat(admin): admin color page more accurately represents game
Diffstat (limited to 'internal/game/cmd_get.go')
-rw-r--r--internal/game/cmd_get.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/game/cmd_get.go b/internal/game/cmd_get.go
index ea1c667..afd9ae6 100644
--- a/internal/game/cmd_get.go
+++ b/internal/game/cmd_get.go
@@ -373,9 +373,9 @@ func (g *Game) pickupCredits(sess *net.Session, p *player.Player, itemID string)
p.Credits += qty
g.AccountStore.SaveCharacter(p)
if qty == 1 {
- sess.WriteLine(g.colorize(sess, "credits_pickup", "You pick up 1 credit."))
+ sess.WriteLine(g.colorize(sess, "currency_pickup", "You pick up 1 credit."))
} else {
- sess.WriteLine(g.colorize(sess, "credits_pickup", fmt.Sprintf("You pick up %d credits. (total: %d)", qty, p.Credits)))
+ sess.WriteLine(g.colorize(sess, "currency_pickup", fmt.Sprintf("You pick up %d credits. (total: %d)", qty, p.Credits)))
}
}