Explorar el Código

Remove Focus if Focus is no longer visible

Reddo hace 5 años
padre
commit
54ad802a8e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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() + ": ";