Fix for oil rig fix. operator precedence
This commit is contained in:
parent
9fa7776929
commit
740779b8ad
1 changed files with 2 additions and 2 deletions
|
@ -1541,7 +1541,7 @@ public class GT_Utility {
|
|||
}
|
||||
if(save){//obvious?
|
||||
if(amnt<=0) tInts[0] = type << 24;
|
||||
else tInts[0] = type << 24 + amnt;
|
||||
else tInts[0] = (type << 24) + amnt;
|
||||
GT_Proxy.chunkData.remove(tPos);
|
||||
GT_Proxy.chunkData.put(tPos, tInts);
|
||||
}
|
||||
|
@ -1592,7 +1592,7 @@ public class GT_Utility {
|
|||
tFluidStack=new FluidStack(Materials.NatruralGas.mGas,amnt);//5
|
||||
}
|
||||
|
||||
tInts[0]=type<<24+amnt;
|
||||
tInts[0]=(type<<24)+amnt;
|
||||
GT_Proxy.chunkData.put(tPos, tInts);
|
||||
return tFluidStack;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue