Examples of GlobalRegionManager


Examples of com.sk89q.worldguard.protection.GlobalRegionManager

      return;
   
    Location  location  = event.getShop().getLocation();
    Player    player    = event.getPlayer();
   
    GlobalRegionManager  manager   = worldGuard.getGlobalRegionManager();
    boolean        isAllowed  = manager.canBuild(player, location);
   
    if (!isAllowed) {
      event.setCancelled(true);
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.