Fixed incorrect method call.

Added tests to make sure that this doesn't happen.
This commit is contained in:
2020-04-27 13:21:04 -05:00
parent 6ac686b86c
commit 39381f07f9
2 changed files with 3 additions and 1 deletions

View File

@@ -67,6 +67,6 @@ public class Utilities {
}
public static Point2 worldToLocalChunkCoordinates(Point2 worldCoordinates) {
return worldToChunkCoordinates(worldCoordinates.x, worldCoordinates.y);
return worldToLocalChunkCoordinates(worldCoordinates.x, worldCoordinates.y);
}
}