meh...
This commit is contained in:
parent
c665b14e22
commit
ead3fa6ad7
3 changed files with 6 additions and 0 deletions
|
@ -265,6 +265,7 @@ public class GT_Mod implements IGT_Mod {
|
|||
GregTech_API.mRFtoEU = GregTech_API.sOPStuff.get(ConfigCategories.general, "100RFtoEU", 20);
|
||||
GregTech_API.mRFExplosions = GregTech_API.sOPStuff.get(ConfigCategories.general, "RFExplosions", false);
|
||||
GregTech_API.meIOLoaded = Loader.isModLoaded("EnderIO");
|
||||
gregtechproxy.mForceFreeFace = GregTech_API.sMachineFile.get(ConfigCategories.machineconfig, "forceFreeFace",false);
|
||||
|
||||
GregTech_API.mUseOnlyGoodSolderingMaterials = GregTech_API.sRecipeFile.get(ConfigCategories.Recipes.harderrecipes, "useonlygoodsolderingmaterials", GregTech_API.mUseOnlyGoodSolderingMaterials);
|
||||
|
||||
|
|
|
@ -346,6 +346,10 @@ public abstract class GT_MetaTileEntity_BasicMachine extends GT_MetaTileEntity_B
|
|||
@Override
|
||||
public boolean onRightclick(IGregTechTileEntity aBaseMetaTileEntity, EntityPlayer aPlayer) {
|
||||
if (aBaseMetaTileEntity.isClientSide()) return true;
|
||||
if(!GT_Mod.gregtechproxy.mForceFreeFace) {
|
||||
aBaseMetaTileEntity.openGUI(aPlayer);
|
||||
return true;
|
||||
}
|
||||
for(byte i=0;i < 6; i++){
|
||||
if(aBaseMetaTileEntity.getAirAtSide(i)){
|
||||
aBaseMetaTileEntity.openGUI(aPlayer);
|
||||
|
|
|
@ -202,6 +202,7 @@ public abstract class GT_Proxy implements IGT_Mod, IGuiHandler, IFuelHandler {
|
|||
public boolean mAprilFool = false;
|
||||
public boolean mCropNeedBlock = true;
|
||||
public boolean mAMHInteraction = true;
|
||||
public boolean mForceFreeFace = false;
|
||||
|
||||
public GT_Proxy() {
|
||||
GameRegistry.registerFuelHandler(this);
|
||||
|
|
Loading…
Reference in a new issue