commit
5518ab7249
1 changed files with 4 additions and 2 deletions
|
@ -194,9 +194,11 @@ public class TileEngineIron extends TileEngineWithInventory implements IFluidHan
|
||||||
if (stack != null) {
|
if (stack != null) {
|
||||||
FluidStack liquid = FluidContainerRegistry.getFluidForFilledItem(stack);
|
FluidStack liquid = FluidContainerRegistry.getFluidForFilledItem(stack);
|
||||||
if (liquid == null && heat > MIN_HEAT * 2) {
|
if (liquid == null && heat > MIN_HEAT * 2) {
|
||||||
ISolidCoolant coolant = BuildcraftFuelRegistry.coolant.getSolidCoolant(StackKey.stack(stack));
|
final ItemStack stackOne = stack.copy();
|
||||||
|
stackOne.stackSize = 1;
|
||||||
|
ISolidCoolant coolant = BuildcraftFuelRegistry.coolant.getSolidCoolant(StackKey.stack(stackOne));
|
||||||
if (coolant != null) {
|
if (coolant != null) {
|
||||||
liquid = coolant.getFluidFromSolidCoolant(stack);
|
liquid = coolant.getFluidFromSolidCoolant(stackOne);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue