SimplyPerms/net/crystalyx/bukkit/simplyperms/preventions/animals/Shear.java

22 lines
578 B
Java
Raw Normal View History

2012-04-29 00:11:39 +00:00
package net.crystalyx.bukkit.simplyperms.preventions.animals;
import net.crystalyx.bukkit.simplyperms.SimplyPlugin;
import net.crystalyx.bukkit.simplyperms.SimplyPrevents;
import org.bukkit.event.EventHandler;
import org.bukkit.event.EventPriority;
import org.bukkit.event.player.PlayerShearEntityEvent;
public class Shear extends SimplyPrevents {
2012-04-29 00:55:03 +00:00
2012-04-29 00:11:39 +00:00
public Shear(SimplyPlugin plugin) {
super(plugin);
}
@EventHandler(priority = EventPriority.LOWEST)
public void shear(PlayerShearEntityEvent event) {
prevent(event, event.getPlayer(), "shear,animals,interact");
}
2012-04-29 00:55:03 +00:00
2012-04-29 00:11:39 +00:00
}