handle non-user chat

This commit is contained in:
Robin Appelman 2025-10-10 02:07:55 +02:00
commit be97a5f7f7

View file

@ -25,6 +25,9 @@ public OnPluginStart() {
} }
public Action:Command_SayChat(client, args) { public Action:Command_SayChat(client, args) {
if (client == 0) {
return Plugin_Continue;
}
new String:steam_id[32]; new String:steam_id[32];
GetClientAuthId(client, AuthId_SteamID64, steam_id, sizeof(steam_id)); GetClientAuthId(client, AuthId_SteamID64, steam_id, sizeof(steam_id));