1
0
Fork 0

[server] Fix ChunkTools.GetContainingChunkReferences

This commit is contained in:
Starbeamrainbowlabs 2017-06-24 20:42:43 +01:00
parent bfe8c25b6c
commit 914e3abfe3
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@ namespace SBRL.Utilities
{ {
result.Add(new ChunkReference( result.Add(new ChunkReference(
plane, plane,
currentLocation.X, currentLocation.X / plane.ChunkSize,
currentLocation.Y currentLocation.Y / plane.ChunkSize
)); ));
currentLocation.X += plane.ChunkSize; currentLocation.X += plane.ChunkSize;