From a41a4372984946f222501a218d324f14ee7df680 Mon Sep 17 00:00:00 2001 From: Areso Date: Mon, 21 Sep 2020 15:25:44 +0300 Subject: [PATCH] fixed missing closure --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index a019f7d2..ad6891c5 100644 --- a/index.html +++ b/index.html @@ -1928,7 +1928,7 @@

How to play

} } //ISSUE #339 - game.checkObjAccessibility(); + //game.checkObjAccessibility(); game.mapCreated = 1; composite_gm(); } @@ -1944,7 +1944,7 @@

How to play

//first we check whether myMapObjects has something //then add AND condition //that myMapObjects is NOT in the list of nonVisitableElements - if (game.myMapObjects[i][j] !== 0 && !(inArray(nonVisitableElements, game.myMapObjects[i][j])) { + if (game.myMapObjects[i][j] !== 0 && !(inArray(nonVisitableElements, game.myMapObjects[i][j]))) { console.log("myMapObjects"); } }