Examples of shouldCheckWeakPower()


Examples of net.minecraft.block.Block.shouldCheckWeakPower()

    if (block == null) {
      return 0;
    }

    if (!block.shouldCheckWeakPower(this, x, y, z, direction)) {
      return this.getBlockPowerInput(x, y, z);
    } else {
      return block.isProvidingWeakPower(this, x, y, z, direction);
    }
  }
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.