30 lines
839 B
Java
30 lines
839 B
Java
|
package net.crystalyx.bukkit.simplyperms.preventions.interact;
|
||
|
|
||
|
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.block.Action;
|
||
|
import org.bukkit.event.player.PlayerInteractEvent;
|
||
|
|
||
|
public class Button extends SimplyPrevents {
|
||
|
|
||
|
public Button(SimplyPlugin plugin) {
|
||
|
super(plugin);
|
||
|
}
|
||
|
|
||
|
@EventHandler(priority = EventPriority.LOWEST)
|
||
|
public void button(PlayerInteractEvent event) {
|
||
|
Action action = event.getAction();
|
||
|
if (action == Action.LEFT_CLICK_BLOCK
|
||
|
|| action == Action.RIGHT_CLICK_BLOCK) {
|
||
|
if (event.getClickedBlock().getType() == Material.STONE_BUTTON) {
|
||
|
prevent(event, event.getPlayer(), "button,interact");
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|