From 4626e6c1da1f58baaf497292600c7707c817f065 Mon Sep 17 00:00:00 2001 From: hut Date: Wed, 20 Mar 2024 06:56:25 +0100 Subject: [PATCH] nicer input prompts --- src/hud.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hud.rs b/src/hud.rs index 203c810..ef25b68 100644 --- a/src/hud.rs +++ b/src/hud.rs @@ -352,7 +352,7 @@ fn update( let mut choices: Vec = Vec::new(); let mut count = 1; for choice in &q_choices { - choices.push(format!("[{}] @{}: {}", + choices.push(format!("({}) <{}> {}", count, choice.recipient, choice.text)); count += 1; }