Add space to quit msg

This commit is contained in:
Jackzie 2022-06-05 15:55:22 -05:00
parent bc4103b257
commit fd417add88
No known key found for this signature in database
GPG key ID: 1E834FE36520537A
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View file

@ -183,7 +183,7 @@ public void Event_Connection(Event event, const char[] name, bool dontBroadcast)
} else {
static char reason[64];
event.GetString("reason", reason, sizeof(reason));
Format(reason, sizeof(reason), "left: \"%s\"", reason);
Format(reason, sizeof(reason), " left: \"%s\"", reason);
AddLog("QUIT", clientName, "", reason);
}
}