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

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

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

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

  @EventHandler(priority = EventPriority.LOWEST)
  public void pressureplate(PlayerInteractEvent event) {
    if (event.getAction() == Action.PHYSICAL) {
      Material material = event.getClickedBlock().getType();
      if (material == Material.STONE_PLATE
          || material == Material.WOOD_PLATE) {
        prevent(event, event.getPlayer(), "pressureplate,interact");
      }
    }
  }
 
}
TOP

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

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.