@EventHandler(priority = EventPriority.HIGH)
 public void onBlockFromTo(BlockFromToEvent event) {
   if (Portal.inPortalRegion(event.getBlock().getLocation(), 3)
       | Portal.inPortalRegion(event.getToBlock().getLocation(), 3)) event.setCancelled(true);
 }