mirror of
https://github.com/songoda/FabledSkyBlock.git
synced 2024-11-01 08:09:44 +01:00
Fix non-island members influencing generator level
This commit is contained in:
parent
9deed679b7
commit
36e815f9f1
@ -264,10 +264,11 @@ public class Block implements Listener {
|
|||||||
List<Generator> generators = new ArrayList<>(generatorManager.getGenerators());
|
List<Generator> generators = new ArrayList<>(generatorManager.getGenerators());
|
||||||
Collections.reverse(generators); // Use the highest generator available
|
Collections.reverse(generators); // Use the highest generator available
|
||||||
|
|
||||||
// Filter players on the island
|
// Filter valid players on the island
|
||||||
Set<Player> possiblePlayers = new HashSet<>();
|
Set<Player> possiblePlayers = new HashSet<>();
|
||||||
for (Player p : Bukkit.getOnlinePlayers()) {
|
for (Player p : Bukkit.getOnlinePlayers()) {
|
||||||
if (LocationUtil.isLocationAtLocationRadius(p.getLocation(), island.getLocation(world, IslandEnvironment.Island), island.getRadius())) {
|
boolean isMember = island.hasRole(IslandRole.Owner, p.getUniqueId()) || island.hasRole(IslandRole.Member, p.getUniqueId()) || island.hasRole(IslandRole.Coop, p.getUniqueId());
|
||||||
|
if (isMember && LocationUtil.isLocationAtLocationRadius(p.getLocation(), island.getLocation(world, IslandEnvironment.Island), island.getRadius())) {
|
||||||
possiblePlayers.add(p);
|
possiblePlayers.add(p);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -435,10 +436,11 @@ public class Block implements Listener {
|
|||||||
List<Generator> generators = new ArrayList<>(generatorManager.getGenerators());
|
List<Generator> generators = new ArrayList<>(generatorManager.getGenerators());
|
||||||
Collections.reverse(generators); // Use the highest generator available
|
Collections.reverse(generators); // Use the highest generator available
|
||||||
|
|
||||||
// Filter players on the island
|
// Filter valid players on the island
|
||||||
Set<Player> possiblePlayers = new HashSet<>();
|
Set<Player> possiblePlayers = new HashSet<>();
|
||||||
for (Player player : Bukkit.getOnlinePlayers()) {
|
for (Player player : Bukkit.getOnlinePlayers()) {
|
||||||
if (LocationUtil.isLocationAtLocationRadius(player.getLocation(), island.getLocation(world, IslandEnvironment.Island), island.getRadius())) {
|
boolean isMember = island.hasRole(IslandRole.Owner, player.getUniqueId()) || island.hasRole(IslandRole.Member, player.getUniqueId()) || island.hasRole(IslandRole.Coop, player.getUniqueId());
|
||||||
|
if (isMember && LocationUtil.isLocationAtLocationRadius(player.getLocation(), island.getLocation(world, IslandEnvironment.Island), island.getRadius())) {
|
||||||
possiblePlayers.add(player);
|
possiblePlayers.add(player);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user