Examples of netSetTile()


Examples of com.mojang.minecraft.level.Level.netSetTile()

  public void breakBlock(int x, int y, int z)
  {
    Level level = minecraft.level;
    Block block = Block.blocks[level.getTile(x, y, z)];

    boolean success = level.netSetTile(x, y, z, 0);

    if(block != null && success)
    {
      if(minecraft.isOnline())
      {
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.