mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
[client] Bugfix: Render the visible parts of lines that span over unloaded chunks
This commit is contained in:
parent
903666f2ed
commit
94d5b109a7
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue