mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-18 13:26:12 +00:00
f5b5fcd5ef
To other developers: If you find places where staff are refered to as only admins pls fix it for me.
63 lines
1.7 KiB
Java
63 lines
1.7 KiB
Java
package me.totalfreedom.totalfreedommod.blocking;
|
|
|
|
import me.totalfreedom.totalfreedommod.FreedomService;
|
|
import me.totalfreedom.totalfreedommod.player.FPlayer;
|
|
import me.totalfreedom.totalfreedommod.util.FSync;
|
|
import org.bukkit.ChatColor;
|
|
import org.bukkit.event.EventHandler;
|
|
import org.bukkit.event.EventPriority;
|
|
import org.bukkit.event.block.BlockBreakEvent;
|
|
import org.bukkit.event.block.BlockPlaceEvent;
|
|
|
|
public class EditBlocker extends FreedomService
|
|
{
|
|
@Override
|
|
public void onStart()
|
|
{
|
|
}
|
|
|
|
@Override
|
|
public void onStop()
|
|
{
|
|
}
|
|
|
|
@EventHandler(priority = EventPriority.LOW)
|
|
public void onBlockPlace(BlockPlaceEvent event)
|
|
{
|
|
FPlayer fPlayer = plugin.pl.getPlayerSync(event.getPlayer());
|
|
if (!fPlayer.isEditBlocked())
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (plugin.sl.isStaffSync(event.getPlayer()))
|
|
{
|
|
fPlayer.setEditBlocked(false);
|
|
return;
|
|
}
|
|
|
|
FSync.playerMsg(event.getPlayer(), ChatColor.RED + "Your ability to place blocks has been disabled!");
|
|
event.setCancelled(true);
|
|
}
|
|
|
|
@EventHandler(priority = EventPriority.LOW)
|
|
public void onBlockBreak(BlockBreakEvent event)
|
|
{
|
|
FPlayer fPlayer = plugin.pl.getPlayerSync(event.getPlayer());
|
|
if (!fPlayer.isEditBlocked())
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (plugin.sl.isStaffSync(event.getPlayer()))
|
|
{
|
|
fPlayer.setEditBlocked(false);
|
|
return;
|
|
}
|
|
|
|
FSync.playerMsg(event.getPlayer(), ChatColor.RED + "Your ability to destroy blocks has been disabled!");
|
|
event.setCancelled(true);
|
|
}
|
|
|
|
}
|