mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
[client] Fix crash by fiddling with imports
This commit is contained in:
parent
e7b6293278
commit
8d38086eaf
1 changed files with 5 additions and 3 deletions
|
@ -1,7 +1,8 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
import ChunkReference from './ChunkReference.js';
|
import ChunkReference from './ChunkReference';
|
||||||
import Rectangle from './Utilities/Rectangle.js';
|
import Chunk from './Chunk';
|
||||||
|
import Rectangle from './Utilities/Rectangle';
|
||||||
|
|
||||||
class ChunkCache
|
class ChunkCache
|
||||||
{
|
{
|
||||||
|
@ -70,7 +71,8 @@ class ChunkCache
|
||||||
{
|
{
|
||||||
for (let chunk of message.Chunks) {
|
for (let chunk of message.Chunks) {
|
||||||
//let newChunkRef = new ChunkReference();
|
//let newChunkRef = new ChunkReference();
|
||||||
let newChunk = new Chunk(chunk.Location)
|
let newChunk = new Chunk(chunk.Location);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue