smartn't @ZeroEpoch1969

Signed-off-by: Robinson Gallego <robinson.leal7@gmail.com>
This commit is contained in:
Robinson Gallego 2019-07-31 13:15:09 -04:00
parent ca868a290d
commit 561854f2f0

View File

@ -53,6 +53,8 @@ public class InteractBlocker extends FreedomService
@EventHandler(priority = EventPriority.HIGH) @EventHandler(priority = EventPriority.HIGH)
public void onRightClickBell(PlayerInteractEvent event) public void onRightClickBell(PlayerInteractEvent event)
{
if (event.getClickedBlock() != null)
{ {
if (event.getClickedBlock().getType().equals(Material.BELL)) if (event.getClickedBlock().getType().equals(Material.BELL))
{ {
@ -62,6 +64,7 @@ public class InteractBlocker extends FreedomService
} }
} }
} }
}
private void handleRightClick(PlayerInteractEvent event) private void handleRightClick(PlayerInteractEvent event)
{ {