This commit is contained in:
Robin Appelman 2025-05-04 00:53:09 +02:00
commit 9678f0db8b

View file

@ -21,13 +21,13 @@ public Action OnClientSayCommand(int client, const char[] command, const char[]
} }
public Action HandleWhoCommand(Handle Timer, int client) { public Action HandleWhoCommand(Handle Timer, int client) {
PrintToChatAll("\x01[\x03SDR\x01]: They always ask \"Who is server?\". But nobody ever asks \"How is server?\"."); PrintToChatAll("They always ask \"Who is server?\". But nobody ever asks \"How is server?\".");
return Plugin_Handled; return Plugin_Handled;
} }
public Action HandleHowCommand(Handle Timer, int client) { public Action HandleHowCommand(Handle Timer, int client) {
PrintToChatAll("\x01[\x03SDR\x01]: Doing well, thanks for asking."); PrintToChatAll("Doing well, thanks for asking.");
return Plugin_Handled; return Plugin_Handled;
} }