Merge branch 'Blood-Asp:unstable' into unstable

This commit is contained in:
Mikhail 2022-08-27 09:55:16 -05:00 committed by GitHub
commit cd628548ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -255,14 +255,14 @@ public abstract class GT_MetaTileEntity_Boiler
public boolean allowPullStack(IGregTechTileEntity aBaseMetaTileEntity, int aIndex, byte aSide, ItemStack aStack) {
if (GT_Mod.gregtechproxy.mAllowSmallBoilerAutomation)
return true;
return aIndex == 1 || aIndex == 3;
else
return false;
}
public boolean allowPutStack(IGregTechTileEntity aBaseMetaTileEntity, int aIndex, byte aSide, ItemStack aStack) {
if(GT_Mod.gregtechproxy.mAllowSmallBoilerAutomation)
return true;
return aIndex == 2;
else
return false;
}