diff options
| author | stonedDiscord <stoned@derpymail.org> | 2019-07-16 22:02:38 +0200 |
|---|---|---|
| committer | stonedDiscord <stoned@derpymail.org> | 2019-07-16 22:02:38 +0200 |
| commit | ab960bb1a2a43d19c497acb2590ff88c0b82d151 (patch) | |
| tree | f60f5b9b6cfe546bc31c32ed978f53f9b2e124aa /webAO/client.js | |
| parent | 4d7c108408e7a4c43701af62356d92e946aa23e9 (diff) | |
ARUP dummy
Diffstat (limited to 'webAO/client.js')
| -rw-r--r-- | webAO/client.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/webAO/client.js b/webAO/client.js index 44c13da..b06283b 100644 --- a/webAO/client.js +++ b/webAO/client.js @@ -138,6 +138,7 @@ class Client extends EventEmitter { this.on("ID", this.handleID.bind(this)); this.on("PN", this.handlePN.bind(this)); this.on("SI", this.handleSI.bind(this)); + this.on("ARUP", this.handleARUP.bind(this)); this.on("CharsCheck", this.handleCharsCheck.bind(this)); this.on("PV", this.handlePV.bind(this)); this.on("CHECK", () => {}); @@ -813,6 +814,15 @@ class Client extends EventEmitter { } /** + * Doesn't handle the change of players in an area. + * webAO doesn't have this feature yet, but i want the warning to go away. + * @param {Array} args packet arguments + */ + handleARUP(args) { + ; + } + + /** * Received when the server announces its server info, * but we use it as a cue to begin retrieving characters. * @param {Array} args packet arguments |
