/* * This file is part of Skript. * * Skript is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Skript is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Skript. If not, see <http://www.gnu.org/licenses/>. * * * Copyright 2011-2014 Peter Güttinger * */ package ch.njol.skript.bukkitutil; import org.bukkit.Bukkit; import org.bukkit.Material; import org.bukkit.event.Event.Result; import org.bukkit.event.EventHandler; import org.bukkit.event.EventPriority; import org.bukkit.event.Listener; import org.bukkit.event.player.PlayerInteractEvent; import ch.njol.skript.Skript; /** * Workarounds for Minecraft & Bukkit quirks * * @author Peter Güttinger */ public abstract class Workarounds { private Workarounds() {} public final static void init() {} static { // allows to properly remove a player's tool in right click events Bukkit.getPluginManager().registerEvents(new Listener() { @EventHandler(priority = EventPriority.HIGHEST) public void onInteract(final PlayerInteractEvent e) { if (e.hasItem() && (e.getPlayer().getItemInHand() == null || e.getPlayer().getItemInHand().getType() == Material.AIR || e.getPlayer().getItemInHand().getAmount() == 0)) e.setUseItemInHand(Result.DENY); } }, Skript.getInstance()); } }