From d34185be0bd38c40a114f8601b7d8f8840141d6c Mon Sep 17 00:00:00 2001 From: Natsumi Date: Sat, 17 Apr 2021 19:46:12 +1200 Subject: [PATCH] Display correct player count when opening user dialog --- html/src/app.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/html/src/app.js b/html/src/app.js index 8c4b51c8..138f1cc5 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -7733,6 +7733,11 @@ speechSynthesis.getVoices(); API.getUser(args.params); } this.getAvatarName(args); + if (D.ref.$location.worldId) { + API.getWorld({ + worldId: D.ref.$location.worldId + }); + } } return args; });