Browse Source

fixed weird glitchy sprites near spawn

tags/v0.3.0
Big Bad Waffle 5 years ago
parent
commit
74cc471f6a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/client/js/rendering/renderer.js

+ 1
- 1
src/client/js/rendering/renderer.js View File

@@ -540,7 +540,7 @@ define([

for (let k = 0; k < cLen; k++) {
let c = cell[k];
if (c === '0')
if (c === '0' || c === '')
continue;

c--;


Loading…
Cancel
Save