diff options
| author | RblSb <msrblsb@gmail.com> | 2021-08-15 13:40:01 +0300 |
|---|---|---|
| committer | RblSb <msrblsb@gmail.com> | 2021-08-15 13:44:32 +0300 |
| commit | f2d28c726ba46f03716ed37667d0e94c60ad3459 (patch) | |
| tree | d13d389f005cbb5ba5b5f46da05bbacf5801fbbb /res/client.js | |
| parent | 5b908e914ebfeedb2895f5de1b9167a6ce12c136 (diff) | |
Add /flashback (/fb)
Diffstat (limited to 'res/client.js')
| -rw-r--r-- | res/client.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/res/client.js b/res/client.js index b0953ae..bad1a65 100644 --- a/res/client.js +++ b/res/client.js @@ -1398,6 +1398,8 @@ client_Main.prototype = { break; case "Disconnected": break; + case "Flashback": + break; case "GetTime": if(data.getTime.paused == null) { data.getTime.paused = false; @@ -1869,6 +1871,9 @@ client_Main.prototype = { case "clear": this.send({ type : "ClearChat"}); return true; + case "fb":case "flashback": + this.send({ type : "Flashback"}); + return false; case "removeBan":case "unban": this.send({ type : "BanClient", banClient : { name : args[0], time : 0}}); return true; |
