Package crazypants.enderio.machine.generator.stirling

Examples of crazypants.enderio.machine.generator.stirling.TileEntityStirlingGenerator


    }
  }

  public static void setStirlingBurnTime(PacketBurnTime message, int x, int y, int z) {

    TileEntityStirlingGenerator tile = (TileEntityStirlingGenerator) Minecraft.getMinecraft().theWorld.getTileEntity(x, y, z);
    if(tile == null) {
      //no loaded on client when receiving message, can happen when loading the chunks
      return;
    }
View Full Code Here

TOP

Related Classes of crazypants.enderio.machine.generator.stirling.TileEntityStirlingGenerator

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.