Fixed issue. If the player does not have the fly activated when he joins another teritory, it skips the checks and his flight is activated.

This commit is contained in:
Stefan923 2020-05-09 00:30:03 +03:00 committed by BrowkS
parent 5fb8d06d98
commit 842eb097c6
1 changed files with 5 additions and 3 deletions

View File

@ -580,7 +580,7 @@ public class FactionsPlayerListener implements Listener {
}
public void checkCanFly(FPlayer me) {
if (me.isFlying() && (!me.canFlyAtLocation() || me.checkIfNearbyEnemies())) {
if (!me.canFlyAtLocation() || me.checkIfNearbyEnemies()) {
me.setFFlying(false, false);
return;
}
@ -662,8 +662,10 @@ public class FactionsPlayerListener implements Listener {
if (lastLocations.isEmpty()) return;
for (Map.Entry<UUID, Location> check : lastLocations.entrySet()) {
Player player = Bukkit.getPlayer(check.getKey());
refreshPosition(player, check.getValue(), player.getLocation());
lastLocations.put(player.getUniqueId(), player.getLocation());
if (player != null) {
refreshPosition(player, check.getValue(), player.getLocation());
lastLocations.put(player.getUniqueId(), player.getLocation());
}
}
}, 5L, 10L);
}