Merge pull request #1 from DEv0on/1.7.10
Fixes done by DEv0on and Ikevarez
This commit is contained in:
commit
33f2fd94ec
3 changed files with 3 additions and 3 deletions
|
@ -135,7 +135,7 @@ public class ContainerChemicalWasher extends Container
|
|||
return null;
|
||||
}
|
||||
}
|
||||
else if(slotID > 31)
|
||||
else if(slotID > 30)
|
||||
{
|
||||
if(!mergeItemStack(slotStack, 4, 30, false))
|
||||
{
|
||||
|
|
|
@ -81,7 +81,7 @@ public class ContainerFluidTank extends Container
|
|||
}
|
||||
}
|
||||
else {
|
||||
if(slotID >= 2 && slotID <= 8)
|
||||
if(slotID >= 2 && slotID <= 28)
|
||||
{
|
||||
if(!mergeItemStack(slotStack, 29, inventorySlots.size(), false))
|
||||
{
|
||||
|
|
|
@ -390,7 +390,7 @@ public class TileEntityTurbineValve extends TileEntityTurbineCasing implements I
|
|||
{
|
||||
if(fluid == FluidRegistry.getFluid("steam"))
|
||||
{
|
||||
return ((!worldObj.isRemote && structure != null) || (worldObj.isRemote && clientHasStructure));
|
||||
return ((!worldObj.isRemote && structure != null) || (!worldObj.isRemote && clientHasStructure));
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue