Browse Source

Merge branch 'issue-10' into 'staging'

Issue 10

See merge request !63
tags/v0.1.2^2
Big Bad Waffle 7 years ago
parent
commit
a702f0441d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/server/world/physics.js

+ 1
- 1
src/server/world/physics.js View File

@@ -278,7 +278,7 @@ define([
if (node)
return node.isWall();
else
return false;
return true;
},
isCellOpen: function(x, y) {
if ((x < 0) || (y < 0) || (x >= this.width) | (y >= this.height))


Loading…
Cancel
Save