Examples of CombinedConfig


Examples of fr.neatmonster.nocheatplus.checks.combined.CombinedConfig

          break;
        case RIGHT_CLICK_BLOCK:
          final ItemStack stack = player.getItemInHand();
        if (stack != null && stack.getType() == Material.ENDER_PEARL){
          if (!BlockProperties.isPassable(block.getType())){
            final CombinedConfig ccc = CombinedConfig.getConfig(player);
            if (ccc.enderPearlCheck && ccc.enderPearlPreventClickBlock){
              event.setUseItemInHand(Result.DENY);
            }
          }
        }
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.