SimplyPerms/net/crystalyx/bukkit/simplyperms/preventions/projectile/Snowball.java

29 lines
840 B
Java
Raw Normal View History

2012-04-29 00:11:39 +00:00
package net.crystalyx.bukkit.simplyperms.preventions.projectile;
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 Snowball extends SimplyPrevents {
public Snowball(SimplyPlugin plugin) {
super(plugin);
}
@EventHandler(priority = EventPriority.LOWEST)
public void snowball(PlayerInteractEvent event) {
if (event.getAction() == Action.RIGHT_CLICK_AIR
|| event.getAction() == Action.RIGHT_CLICK_BLOCK) {
if (event.getPlayer().getItemInHand().getType() == Material.SNOW_BALL) {
prevent(event, event.getPlayer(), "snowball,projectile");
}
}
}
2012-04-29 00:55:03 +00:00
2012-04-29 00:11:39 +00:00
}