aboutsummaryrefslogtreecommitdiff
path: root/webAO/client.js
diff options
context:
space:
mode:
authorsD <stoned@derpymail.org>2020-01-05 21:27:02 +0100
committersD <stoned@derpymail.org>2020-01-05 21:27:02 +0100
commita47cf9152b45380f81e7ab15586b05fde3636d82 (patch)
tree04eb05dcd2173c984ed27a01e102ac4b3832e52a /webAO/client.js
parent072caa0dfb44f363298ff8b3b382956bd7150057 (diff)
missing kick commands
Diffstat (limited to 'webAO/client.js')
-rw-r--r--webAO/client.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/webAO/client.js b/webAO/client.js
index 009599e..e6fa3c4 100644
--- a/webAO/client.js
+++ b/webAO/client.js
@@ -163,6 +163,8 @@ class Client extends EventEmitter {
this.on("SM", this.handleSM.bind(this));
this.on("MM", this.handleMM.bind(this));
this.on("BD", this.handleBD.bind(this));
+ this.on("KB", this.handleKB.bind(this));
+ this.on("KK", this.handleKK.bind(this));
this.on("DONE", this.handleDONE.bind(this));
this.on("BN", this.handleBN.bind(this));
this.on("HP", this.handleHP.bind(this));