Fix "join" being cut off on star select

This commit is contained in:
Agent-11 2022-08-23 02:04:53 -04:00
parent 2d2395ad34
commit 1dc9bc53ce

View file

@ -402,7 +402,7 @@ void print_act_selector_strings(void) {
if (playersInAct > 0) { if (playersInAct > 0) {
char message[16] = { 0 }; char message[16] = { 0 };
if (playersInAct == 1) { if (playersInAct == 1) {
if (snprintf(message, 16, "join") < 0) { if (snprintf(message, 16, " join ") < 0) {
// do nothing // do nothing
} }
} else { } else {