mirror of
https://github.com/plexusorg/Plex.git
synced 2024-12-22 17:17:37 +00:00
- Make adminworld check for ranks or permissions
This commit is contained in:
parent
d4578f2255
commit
93fa38d9da
@ -10,6 +10,7 @@ import org.bukkit.entity.Player;
|
||||
import org.bukkit.event.EventHandler;
|
||||
import org.bukkit.event.block.BlockPlaceEvent;
|
||||
import org.bukkit.event.entity.EntitySpawnEvent;
|
||||
|
||||
import static dev.plex.util.PlexUtils.tl;
|
||||
|
||||
public class WorldListener extends PlexListener
|
||||
@ -22,11 +23,19 @@ public class WorldListener extends PlexListener
|
||||
World world = player.getWorld();
|
||||
switch (world.getName().toLowerCase())
|
||||
{
|
||||
case "adminworld":
|
||||
{
|
||||
if (plexPlayer.getRankFromString().isAtLeast(Rank.ADMIN))
|
||||
case "adminworld" -> {
|
||||
if (plugin.getSystem().equalsIgnoreCase("ranks"))
|
||||
{
|
||||
return;
|
||||
if (plexPlayer.getRankFromString().isAtLeast(Rank.ADMIN))
|
||||
{
|
||||
return;
|
||||
}
|
||||
} else if (plugin.getSystem().equalsIgnoreCase("permissions"))
|
||||
{
|
||||
if (player.hasPermission("plex.adminworld"))
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
e.setCancelled(true);
|
||||
player.sendMessage(tl("noAdminWorldBlockPlace"));
|
||||
|
Loading…
Reference in New Issue
Block a user