Remove act num if set to 0 (#128)

This commit is contained in:
EmeraldLoc 2022-06-05 21:10:34 -05:00 committed by GitHub
parent 349ae6a709
commit 658588b05e
1 changed files with 3 additions and 1 deletions

View File

@ -20,8 +20,10 @@ static struct DjuiText* djuiTextAct[MAX_PLAYERS] = { 0 };
static void playerlist_update_row(u8 i, struct NetworkPlayer *np) {
u8 charIndex = np->overrideModelIndex;
char sActNum[7];
if (np->currActNum != 99) {
if (np->currActNum != 99 && np->currActNum != 0) {
snprintf(sActNum, 7, "# %d", np->currActNum);
} else if (np->currActNum == 0) {
snprintf(sActNum, 7, "");
} else {
snprintf(sActNum, 7, "Done");
}