Merge pull request #184 from Jamix77/master

Fixed BKFortress error
This commit is contained in:
Jamix77 2020-03-21 12:59:35 +00:00 committed by GitHub
commit ae755c1099

View file

@ -128,7 +128,7 @@ public final class BKFortressPlugin extends OptionHandler {
DoorActionHandler.handleAutowalkDoor(player, (GameObject) node);
return true;
case 2338:
if (player.getLocation().getY() >= 3515) {
if (player.getLocation().getX() > 3019) {
DoorActionHandler.handleAutowalkDoor(player, (GameObject) node);
return true;
}