mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-01 00:10:40 +01:00
Make all islands Op's
This commit is contained in:
parent
6d8ac151b4
commit
a7f9f21e65
@ -1359,7 +1359,7 @@ public class IslandsManager {
|
||||
|
||||
/**
|
||||
* Checks if a specific location is within the protected range of an island that
|
||||
* the player is a member of (owner or member)
|
||||
* the player is a member of (owner or member) or Op.
|
||||
*
|
||||
* @param player - the player
|
||||
* @param loc - location
|
||||
@ -1370,7 +1370,9 @@ public class IslandsManager {
|
||||
return false;
|
||||
}
|
||||
// Get the player's island
|
||||
return getIslandAt(loc).filter(i -> i.onIsland(loc)).map(i -> i.inTeam(player.getUniqueId()))
|
||||
// If Op then all islands are Ops
|
||||
return player.isOp()
|
||||
|| getIslandAt(loc).filter(i -> i.onIsland(loc)).map(i -> i.inTeam(player.getUniqueId()))
|
||||
.orElse(false);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user