From 8ad53a7b35a38845b979420a47eacf27ca4daf41 Mon Sep 17 00:00:00 2001 From: Natsumi Date: Sun, 21 Mar 2021 10:28:57 +1300 Subject: [PATCH] Orange status bug --- html/src/app.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/html/src/app.js b/html/src/app.js index 3931ea78..62132e9c 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -3874,12 +3874,6 @@ speechSynthesis.getVoices(); this.lastLocation.friendList = friendList; sharedRepository.setObject('last_location', this.lastLocation); } - if (this.worldDialog.visible) { - this.applyWorldDialogInstances(); - } - if (this.userDialog.visible) { - this.applyUserDialogLocation(); - } this.sharedFeed.gameLog.wrist = wristArr; this.sharedFeed.gameLog.noty = notyArr; this.sharedFeed.pendingUpdate = true; @@ -7446,8 +7440,8 @@ speechSynthesis.getVoices(); for (var i = 0; i < friendsInInstance.length; i++) { var addUser = true; var player = friendsInInstance[i]; - for (var k = 0; k < D.users.length; k++) { - var user = D.users[k]; + for (var k = 0; k < users.length; k++) { + var user = users[k]; if (user.displayName === player) { addUser = false; break;