We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9897139 commit e8d662aCopy full SHA for e8d662a
static/scripts/ocap.entity.js
@@ -151,7 +151,12 @@ class Entity {
151
let element = popup.getElement();
152
if (element == null) { return }
153
let display = "inherit";
154
- if (bool || !ui.nicknameEnable) { display = "none" }
+ // if (!this.isPlayer) {
155
+ // popup.closePopup();
156
+ // display = "none"
157
+ // } else {
158
+ if (bool || !ui.nicknameEnable || !this.isPlayer) { display = "none" };
159
+ // };
160
161
if (element.style.display !== display) {
162
element.style.display = display;
0 commit comments