Fixed BKFortress error

Simple error in dialogue handling.
This commit is contained in:
jamix77 2020-03-21 12:58:56 +00:00
parent 0d6c208c84
commit 66848a5140

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;
}