aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-10-29 19:59:06 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-10-29 19:59:06 +1000
commite274d8c74cd009bbaaa9ea1b821ffac4ba0fc54d (patch)
treeb8a8667df6df99dabff868ca26db4e62ce90d6d5 /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines
parent8fb534cda0f292f90eb3b9325ddfbbc0e145f561 (diff)
downloadGT5-Unofficial-e274d8c74cd009bbaaa9ea1b821ffac4ba0fc54d.tar.gz
GT5-Unofficial-e274d8c74cd009bbaaa9ea1b821ffac4ba0fc54d.tar.bz2
GT5-Unofficial-e274d8c74cd009bbaaa9ea1b821ffac4ba0fc54d.zip
% Fixed a class name. IndustrialPlatePress.
+ Added many more config options. $ Fixed workbench crash, third time lucky.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialPlatePress.java (renamed from src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityIndustrial_PlatePress.java)8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityIndustrial_PlatePress.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialPlatePress.java
index d576d159ed..96095698fa 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityIndustrial_PlatePress.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialPlatePress.java
@@ -24,19 +24,19 @@ import net.minecraft.item.ItemStack;
import net.minecraftforge.common.util.ForgeDirection;
import net.minecraftforge.fluids.FluidStack;
-public class GregtechMetaTileEntityIndustrial_PlatePress
+public class GregtechMetaTileEntity_IndustrialPlatePress
extends GregtechMeta_MultiBlockBase {
- public GregtechMetaTileEntityIndustrial_PlatePress(int aID, String aName, String aNameRegional) {
+ public GregtechMetaTileEntity_IndustrialPlatePress(int aID, String aName, String aNameRegional) {
super(aID, aName, aNameRegional);
}
- public GregtechMetaTileEntityIndustrial_PlatePress(String aName) {
+ public GregtechMetaTileEntity_IndustrialPlatePress(String aName) {
super(aName);
}
@Override
public IMetaTileEntity newMetaEntity(IGregTechTileEntity aTileEntity) {
- return new GregtechMetaTileEntityIndustrial_PlatePress(this.mName);
+ return new GregtechMetaTileEntity_IndustrialPlatePress(this.mName);
}
@Override