Package net.crystalyx.bukkit.simplyperms.preventions.interact

Source Code of net.crystalyx.bukkit.simplyperms.preventions.interact.Noteblock

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 Noteblock extends SimplyPrevents {

  public Noteblock(SimplyPlugin plugin) {
    super(plugin);
  }

  @EventHandler(priority = EventPriority.LOWEST)
  public void noteblock(PlayerInteractEvent event) {
    Action action = event.getAction();
    if (action == Action.LEFT_CLICK_BLOCK
        || action == Action.RIGHT_CLICK_BLOCK) {
      if (event.getClickedBlock().getType() == Material.NOTE_BLOCK) {
        prevent(event, event.getPlayer(), "noteblock,interact");
      }
    }
  }
 
}
TOP

Related Classes of net.crystalyx.bukkit.simplyperms.preventions.interact.Noteblock

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.