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) {
if (client == 0) {
return Plugin_Continue;
}
new String:steam_id[32];
GetClientAuthId(client, AuthId_SteamID64, steam_id, sizeof(steam_id));
@ -46,4 +49,4 @@ public void LoadBlockList(const char[] value) {
loadedBlockList[x][0] = EOS;
}
ExplodeString(value, ",", loadedBlockList, sizeof(loadedBlockList), sizeof(loadedBlockList[]), false);
}
}