Fix that the main facing of basic machines can be set to top/bottom (#1354)

This commit is contained in:
Antifluxfield 2018-02-11 02:25:29 +08:00 committed by Blood-Asp
parent d1c2477ea9
commit 38d150a90b

View file

@ -110,10 +110,15 @@ public abstract class GT_MetaTileEntity_BasicMachine extends GT_MetaTileEntity_B
mNEIName = aNEIName; mNEIName = aNEIName;
} }
public boolean setMainFacing(byte aDirection){ protected boolean isValidMainFacing(byte aSide) {
mMainFacing = aDirection; return aSide > 1;
}
public boolean setMainFacing(byte aSide){
if (!isValidMainFacing(aSide)) return false;
mMainFacing = aSide;
if(getBaseMetaTileEntity().getFrontFacing() == mMainFacing){ if(getBaseMetaTileEntity().getFrontFacing() == mMainFacing){
getBaseMetaTileEntity().setFrontFacing(GT_Utility.getOppositeSide(aDirection)); getBaseMetaTileEntity().setFrontFacing(GT_Utility.getOppositeSide(aSide));
} }
onFacingChange(); onFacingChange();
onMachineBlockUpdate(); onMachineBlockUpdate();