Quellcode durchsuchen

Remove Focus if Focus is no longer visible

Reddo vor 5 Jahren
Ursprung
Commit
54ad802a8e
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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() + ": ";