diff options
Diffstat (limited to 'webAO')
| -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 |
