Fix flipped format specifier

Should be flipped, as nucleus id is before state.
This commit is contained in:
Kawe Mazidjatari 2023-02-26 19:34:07 +01:00
parent 03bc4e71c4
commit a80cf721d8

View File

@ -52,7 +52,7 @@ void Host_Status_PrintClient(CClient* client, bool bShowAddress, void (*print) (
}
else
{
print("#%2i \"%s\" %s %llu", client->GetUserID() + 1, client->GetServerName(), client->GetNucleusID(), state);
print("#%2i \"%s\" %llu %s", client->GetHandle(), client->GetServerName(), client->GetNucleusID(), state);
}
print("\n");