Call getHeatFromState in a static way.

This commit is contained in:
drcrazy 2018-09-18 12:45:29 +03:00
parent b4ca82a97b
commit 0918bceb23
2 changed files with 1 additions and 3 deletions

View file

@ -42,7 +42,6 @@ import reborncore.api.power.IEnergyItemInfo;
import reborncore.common.powerSystem.PowerSystem;
import reborncore.common.powerSystem.PoweredItemCapabilityProvider;
import reborncore.common.registration.RebornRegister;
import reborncore.common.registration.impl.ConfigRegistry;
import reborncore.common.util.ItemUtils;
import techreborn.TechReborn;
import techreborn.api.Reference;

View file

@ -91,8 +91,7 @@ public class TileIndustrialBlastFurnace extends TileGenericMachine implements IC
}
for (final IMultiblockPart part : casing.connectedParts) {
final BlockMachineCasing casing1 = (BlockMachineCasing) world.getBlockState(part.getPos()).getBlock();
heat += casing1.getHeatFromState(world.getBlockState(part.getPos()));
heat += BlockMachineCasing.getHeatFromState(part.getBlockState());
}
if (world.getBlockState(location.offset(EnumFacing.UP, 1)).getBlock().getTranslationKey().equals("tile.lava")