From 1dc9bc53ceb9d727cbe6f52150cc74fb4156e4e3 Mon Sep 17 00:00:00 2001 From: Agent-11 <44549182+Agent-11@users.noreply.github.com> Date: Tue, 23 Aug 2022 02:04:53 -0400 Subject: [PATCH] Fix "join" being cut off on star select --- src/menu/star_select.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/menu/star_select.c b/src/menu/star_select.c index 34bd1453f..5ffa4359a 100644 --- a/src/menu/star_select.c +++ b/src/menu/star_select.c @@ -402,7 +402,7 @@ void print_act_selector_strings(void) { if (playersInAct > 0) { char message[16] = { 0 }; if (playersInAct == 1) { - if (snprintf(message, 16, "join") < 0) { + if (snprintf(message, 16, " join ") < 0) { // do nothing } } else {