mirror of
https://codeberg.org/spire/who.git
synced 2026-06-03 18:24:05 +02:00
cleanup
This commit is contained in:
parent
5e8f6aee7e
commit
9678f0db8b
1 changed files with 4 additions and 4 deletions
|
|
@ -14,20 +14,20 @@ public Action OnClientSayCommand(int client, const char[] command, const char[]
|
|||
CreateTimer(0.1, HandleWhoCommand, client);
|
||||
}
|
||||
if (strcmp(sArgs, "!how", false) == 0) {
|
||||
CreateTimer(0.1, HandleHowCommand, client);
|
||||
}
|
||||
CreateTimer(0.1, HandleHowCommand, client);
|
||||
}
|
||||
|
||||
return Plugin_Continue;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue