Update commentary
This commit is contained in:
parent
fc08b67f7d
commit
c9ea7f7727
1 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ public abstract class GT_MetaTileEntity_Hatch extends GT_MetaTileEntity_BasicTan
|
||||||
mTexturePage=aNBT.getByte("mTexturePage");
|
mTexturePage=aNBT.getByte("mTexturePage");
|
||||||
|
|
||||||
if(mTexturePage!=0 && getBaseMetaTileEntity().isServerSide())
|
if(mTexturePage!=0 && getBaseMetaTileEntity().isServerSide())
|
||||||
actualTexture|=0x80;//<- lets just hope no one needs the correct value for that in client
|
actualTexture|=0x80;//<- lets just hope no one needs the correct value for that on server
|
||||||
mMachineBlock=actualTexture;
|
mMachineBlock=actualTexture;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,7 +95,7 @@ public abstract class GT_MetaTileEntity_Hatch extends GT_MetaTileEntity_BasicTan
|
||||||
public final void onTexturePageUpdate(byte aValue) {
|
public final void onTexturePageUpdate(byte aValue) {
|
||||||
mTexturePage = (byte)(aValue & 0x7F);
|
mTexturePage = (byte)(aValue & 0x7F);
|
||||||
if(mTexturePage!=0 && getBaseMetaTileEntity().isServerSide()) {//just to be sure
|
if(mTexturePage!=0 && getBaseMetaTileEntity().isServerSide()) {//just to be sure
|
||||||
mMachineBlock|=0x80;//<- lets just hope no one needs the correct value for that in client
|
mMachineBlock|=0x80;//<- lets just hope no one needs the correct value for that on server
|
||||||
actualTexture=mMachineBlock;
|
actualTexture=mMachineBlock;
|
||||||
}
|
}
|
||||||
//set last bit to allow working of the page reset-er to 0 in rare case when texture id is the same but page changes to 0
|
//set last bit to allow working of the page reset-er to 0 in rare case when texture id is the same but page changes to 0
|
||||||
|
|
Loading…
Reference in a new issue