Call getHeatFromState in a static way.
This commit is contained in:
parent
b4ca82a97b
commit
0918bceb23
2 changed files with 1 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Add table
Reference in a new issue