Fix bounds for west bookcases in Kourend library (#2875)
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user