Fix steamids not showing

This commit is contained in:
Jackz 2022-07-27 13:40:05 -05:00
parent c3ccda8d2a
commit 7d3f8b604a
No known key found for this signature in database
GPG key ID: E0BBD94CF657F603
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View file

@ -42,7 +42,7 @@ public Action Cmd_Status2(int client, int args) {
ReplyToCommand(client, "Index\tUserid\tName\tSteamID");
for(int i = 0; i < players.Length; i++) {
int player = players.Get(i);
GetClientAuthId(player, AuthId_Steam2, buffer, sizeof(buffer));
GetClientAuthId(player, AuthId_Steam2, steamid, sizeof(steamid));
GetClientName(player, buffer, sizeof(buffer));
if(StrEqual(buffer, firstName[player]))
ReplyToCommand(client, "%d.\t#%d\t%s\t%s", player, GetClientUserId(player), buffer, steamid);