Fix that the main facing of basic machines can be set to top/bottom (#1354)
This commit is contained in:
parent
d1c2477ea9
commit
38d150a90b
1 changed files with 8 additions and 3 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue