From 43f21aabae8924f35c12c8485e690aeefe0089fb Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Tue, 16 Jun 2026 01:59:27 -0400 Subject: feat: overhauled ansi color, added prompt options --- internal/game/action_talk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/game/action_talk.go') diff --git a/internal/game/action_talk.go b/internal/game/action_talk.go index 4102841..9e90f93 100644 --- a/internal/game/action_talk.go +++ b/internal/game/action_talk.go @@ -54,7 +54,7 @@ func (g *Game) startTalk(sess *net.Session, p *player.Player, obj *object.Object } func (g *Game) showTalkNode(sess *net.Session, node action.TalkNode) { - sess.WriteLine(fmt.Sprintf("\n%s", g.colorTag(sess, node.Message))) + sess.WriteLine(fmt.Sprintf("\n%s", node.Message)) if node.Action != nil { g.applyNodeAction(sess, node.Action) -- cgit v1.2.3