Package fr.neatmonster.nocheatplus.checks.combined

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

Related Classes of fr.neatmonster.nocheatplus.checks.combined.CombinedConfig

Copyright © 2018 www.massapicom. 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.