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;