From ab960bb1a2a43d19c497acb2590ff88c0b82d151 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Tue, 16 Jul 2019 22:02:38 +0200 Subject: ARUP dummy --- webAO/client.js | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'webAO') 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", () => {}); @@ -812,6 +813,15 @@ class Client extends EventEmitter { this.serv.send("askchaa#%"); } + /** + * 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. -- cgit