Skip to content

Commit a41a437

Browse files
committed
fixed missing closure
1 parent da58838 commit a41a437

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1928,7 +1928,7 @@ <h2>How to play</h2>
19281928
}
19291929
}
19301930
//ISSUE #339
1931-
game.checkObjAccessibility();
1931+
//game.checkObjAccessibility();
19321932
game.mapCreated = 1;
19331933
composite_gm();
19341934
}
@@ -1944,7 +1944,7 @@ <h2>How to play</h2>
19441944
//first we check whether myMapObjects has something
19451945
//then add AND condition
19461946
//that myMapObjects is NOT in the list of nonVisitableElements
1947-
if (game.myMapObjects[i][j] !== 0 && !(inArray(nonVisitableElements, game.myMapObjects[i][j])) {
1947+
if (game.myMapObjects[i][j] !== 0 && !(inArray(nonVisitableElements, game.myMapObjects[i][j]))) {
19481948
console.log("myMapObjects");
19491949
}
19501950
}

0 commit comments

Comments
 (0)