1
0
Fork 0
This commit is contained in:
Starbeamrainbowlabs 2017-10-13 15:09:32 +01:00
commit 45761ecb5d
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class Chunk
{
// Don't draw lines that are walked by other chunks
if(line.ContinuesFrom != null &&
chunkCache.fetchChunk(line.ContinuesFrom) != null)
!(chunkCache.fetchChunk(line.ContinuesFrom) instanceof Chunk))
continue;
let linePoints = line.Points;