Fix bounds for west bookcases in Kourend library (#2875)

This commit is contained in:
trimbe
2018-05-20 06:58:17 -04:00
committed by Tomas Slusny
parent e340cd66d9
commit a8aab2a5f7

View File

@@ -79,7 +79,7 @@ class Bookcase
StringBuilder b = new StringBuilder();
boolean north = location.getY() > 3815;
boolean west = location.getX() < 1625;
boolean west = location.getX() < 1627;
if (north && west)
{
b.append("Northwest");