From a80cf721d8470d016a2b51a71ca359b4babbffec Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sun, 26 Feb 2023 19:34:07 +0100 Subject: [PATCH] Fix flipped format specifier Should be flipped, as nucleus id is before state. --- r5dev/engine/host_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/engine/host_cmd.cpp b/r5dev/engine/host_cmd.cpp index 199ddece..666183ca 100644 --- a/r5dev/engine/host_cmd.cpp +++ b/r5dev/engine/host_cmd.cpp @@ -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");