@Override public final void updateEntity(World world, int x, int y, int z, int meta) { super.updateEntity(world, x, y, z, meta); // if (ModList.BCFACTORY.isLoaded() && ModList.REACTORCRAFT.isLoaded()) { //Only if, since need // a way to pipe it if (this.contains(FluidRegistry.getFluid("uranium hexafluoride")) || this.contains(FluidRegistry.getFluid("hydrofluoric acid"))) { ReikaSoundHelper.playSoundAtBlock(world, x, y, z, "random.fizz"); for (int i = 0; i < 6; i++) { ForgeDirection dir = dirs[i]; int dx = x + dir.offsetX; int dy = y + dir.offsetY; int dz = z + dir.offsetZ; MachineRegistry m = MachineRegistry.getMachine(world, dx, dy, dz); if (m == MachineRegistry.PIPE) { TileEntityPipe p = (TileEntityPipe) world.getTileEntity(dx, dy, dz); p.setFluid(liquid); p.addFluid(5); // ReikaParticleHelper.SMOKE.spawnAroundBlock(world, dx, dy, dz, 8); } } world.setBlockToAir(x, y, z); ReikaParticleHelper.SMOKE.spawnAroundBlock(world, x, y, z, 8); } // } if (rand.nextInt(60) == 0) { ReikaWorldHelper.temperatureEnvironment(world, x, y, z, this.getTemperature()); } if (liquid != null) { int temp = liquid.getTemperature(worldObj, xCoord, yCoord, zCoord); temperature = temp > 750 ? temp - 425 : temp - 273; if (temperature > this.getMaxTemperature()) { this.overheat(worldObj, xCoord, yCoord, zCoord); } } else { temperature = ReikaWorldHelper.getAmbientTemperatureAt(world, x, y, z); } }
@Override protected void writeSyncTag(NBTTagCompound NBT) { super.writeSyncTag(NBT); NBT.setInteger("temp", temperature); }
@Override protected void readSyncTag(NBTTagCompound NBT) { super.readSyncTag(NBT); temperature = NBT.getInteger("temp"); }