30 lines
854 B
Java
30 lines
854 B
Java
|
package net.crystalyx.bukkit.simplyperms.preventions.craft;
|
||
|
|
||
|
import net.crystalyx.bukkit.simplyperms.SimplyPlugin;
|
||
|
import net.crystalyx.bukkit.simplyperms.SimplyPrevents;
|
||
|
|
||
|
import org.bukkit.Material;
|
||
|
import org.bukkit.event.EventHandler;
|
||
|
import org.bukkit.event.EventPriority;
|
||
|
import org.bukkit.event.Event.Result;
|
||
|
import org.bukkit.event.block.Action;
|
||
|
import org.bukkit.event.player.PlayerInteractEvent;
|
||
|
|
||
|
public class Chest extends SimplyPrevents {
|
||
|
|
||
|
public Chest(SimplyPlugin plugin) {
|
||
|
super(plugin);
|
||
|
}
|
||
|
|
||
|
@EventHandler(priority = EventPriority.LOWEST)
|
||
|
public void chestPlayerInteract(PlayerInteractEvent event) {
|
||
|
if (event.getAction() == Action.RIGHT_CLICK_BLOCK
|
||
|
&& event.getClickedBlock().getType() == Material.CHEST) {
|
||
|
if (prevent(event, event.getPlayer(), "chest,craft")) {
|
||
|
event.setUseInteractedBlock(Result.DENY);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|