Merge pull request #166 from Agent-11/join-cut-off-fix

Fix "join" being cut off on star select
This commit is contained in:
Prince Frizzy 2022-08-25 02:17:04 -04:00 committed by GitHub
commit 7bb49322f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {