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

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