28 lines
785 B
Java
28 lines
785 B
Java
|
package net.crystalyx.bukkit.simplyperms.preventions.fire;
|
||
|
|
||
|
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;
|
||
|
|
||
|
import net.crystalyx.bukkit.simplyperms.SimplyPlugin;
|
||
|
import net.crystalyx.bukkit.simplyperms.SimplyPrevents;
|
||
|
|
||
|
public class Fireball extends SimplyPrevents {
|
||
|
|
||
|
public Fireball(SimplyPlugin plugin) {
|
||
|
super(plugin);
|
||
|
}
|
||
|
|
||
|
@EventHandler(priority = EventPriority.LOWEST)
|
||
|
public void fireball(PlayerInteractEvent event) {
|
||
|
if (event.getAction() == Action.RIGHT_CLICK_BLOCK) {
|
||
|
if (event.getPlayer().getItemInHand().getType() == Material.FIREBALL) {
|
||
|
prevent(event, event.getPlayer(), "fireball,fire,interact");
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|