mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
[server] Fix ChunkTools.GetContainingChunkReferences
This commit is contained in:
parent
bfe8c25b6c
commit
914e3abfe3
1 changed files with 2 additions and 2 deletions
|
@ -26,8 +26,8 @@ namespace SBRL.Utilities
|
|||
{
|
||||
result.Add(new ChunkReference(
|
||||
plane,
|
||||
currentLocation.X,
|
||||
currentLocation.Y
|
||||
currentLocation.X / plane.ChunkSize,
|
||||
currentLocation.Y / plane.ChunkSize
|
||||
));
|
||||
|
||||
currentLocation.X += plane.ChunkSize;
|
||||
|
|
Loading…
Reference in a new issue