Преглед на файлове

Remove Focus if Focus is no longer visible

Reddo преди 5 години
родител
ревизия
54ad802a8e
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      app/Elements/Modules/HyperlinkHandler.ts

+ 1 - 1
app/Elements/Modules/HyperlinkHandler.ts

@@ -46,7 +46,7 @@ module Elements.HyperlinkHandler {
 
     export async function hyperlinkObject (thing? : any) {
         resetAvailableActions();
-        if (thing instanceof Thing && thing != WorldState.player) {
+        if (thing instanceof Thing && thing != WorldState.player && thing.isVisibleTo(WorldState.player)) {
             await HyperlinkingRulebook.execute({noun: thing});
 
             currentActionTarget.nodeValue = thing.getPrintedName() + ": ";