Revert "perspective: fix regression caused by 2599db2"

This reverts commit d6906e735b.
This commit is contained in:
Adam
2018-07-27 13:27:01 -04:00
parent b6954e0703
commit bed529d9cd

View File

@@ -321,8 +321,8 @@ public class Perspective
int plane = client.getPlane();
// Shift over one half tile as localLocation is the center point of the tile, and then shift the area size
Point southWestCorner = new Point(localLocation.getX() - (size * LOCAL_TILE_SIZE / 2) + 1,
localLocation.getY() - (size * LOCAL_TILE_SIZE / 2) + 1);
Point southWestCorner = new Point(localLocation.getX() - (size * LOCAL_TILE_SIZE / 2),
localLocation.getY() - (size * LOCAL_TILE_SIZE / 2));
// expand by size
Point northEastCorner = new Point(southWestCorner.getX() + size * LOCAL_TILE_SIZE - 1,
southWestCorner.getY() + size * LOCAL_TILE_SIZE - 1);