BuildCraft 6.4.11
This commit is contained in:
parent
ed5fd2b375
commit
c018abbb04
3 changed files with 3 additions and 2 deletions
1
buildcraft_resources/changelog/6.4.11
Normal file
1
buildcraft_resources/changelog/6.4.11
Normal file
|
@ -0,0 +1 @@
|
|||
Fixed a copypaste error causing a rare crash. (Surprisingly, despite extensive testing, I didn't see it either in code or in action.)
|
|
@ -1,3 +1,3 @@
|
|||
1.6.4:BuildCraft:4.2.2
|
||||
1.7.2:BuildCraft:6.0.16
|
||||
1.7.10:BuildCraft:6.4.10
|
||||
1.7.10:BuildCraft:6.4.11
|
||||
|
|
|
@ -342,7 +342,7 @@ public class TileEngineIron extends TileEngineWithInventory implements IFluidHan
|
|||
public void sendGUINetworkData(ContainerEngine containerEngine, ICrafting iCrafting) {
|
||||
super.sendGUINetworkData(containerEngine, iCrafting);
|
||||
iCrafting.sendProgressBarUpdate(containerEngine, 15, tankFuel.getFluid() != null && tankFuel.getFluid().getFluid() != null ? tankFuel.getFluid().getFluid().getID() : 0);
|
||||
iCrafting.sendProgressBarUpdate(containerEngine, 16, tankCoolant.getFluid() != null && tankFuel.getFluid().getFluid() != null ? tankCoolant.getFluid().getFluid().getID() : 0);
|
||||
iCrafting.sendProgressBarUpdate(containerEngine, 16, tankCoolant.getFluid() != null && tankCoolant.getFluid().getFluid() != null ? tankCoolant.getFluid().getFluid().getID() : 0);
|
||||
iCrafting.sendProgressBarUpdate(containerEngine, 17, tankFuel.getFluid() != null ? tankFuel.getFluid().amount : 0);
|
||||
iCrafting.sendProgressBarUpdate(containerEngine, 18, tankCoolant.getFluid() != null ? tankCoolant.getFluid().amount : 0);
|
||||
iCrafting.sendProgressBarUpdate(containerEngine, 19, tankFuel.colorRenderCache);
|
||||
|
|
Loading…
Reference in a new issue