From 3102525d97aa6f1ad152c74b2ccfbd4b3a9b83f5 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Fri, 26 Jun 2026 02:52:31 -0400 Subject: feat: simplified conversation trees and output won't overwrite prompts now --- internal/game/act_use.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/game/act_use.go') diff --git a/internal/game/act_use.go b/internal/game/act_use.go index 34f28c3..0d8582d 100644 --- a/internal/game/act_use.go +++ b/internal/game/act_use.go @@ -34,7 +34,7 @@ func (g *Game) startUse(sess *net.Session, p *player.Player, obj *object.ObjectD return } - g.broadcastAction(sess, "\n%s uses the %s.", p.Name, obj.Name) + g.broadcastAction(sess, "%s uses the %s.", p.Name, obj.Name) p.Action = &behavior.Action{ Type: "use", -- cgit v1.2.3