Skip to content

Commit 86e83a3

Browse files
committed
Update v417.56
1 parent d92448a commit 86e83a3

20 files changed

+21
-21
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ compileJava {
2929
sourceCompatibility = targetCompatibility = '1.8'
3030
}
3131

32-
version = "v416.44"
32+
version = "v417.56"
3333
group = "gregtechmod"
3434
archivesBaseName = "gregtechmod"
3535

src/main/java/gregtechmod/GT_Mod.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public class GT_Mod implements IGT_Mod {
147147
@SidedProxy(clientSide = "gregtechmod.common.GT_Client", serverSide = "gregtechmod.common.GT_Server")
148148
public static GT_Proxy gregtechproxy;
149149

150-
public static volatile int VERSION = 416;
150+
public static volatile int VERSION = 417;
151151
public static volatile int REQUIRED_IC2 = 823;
152152
public static boolean
153153
sThaumiumObtainable = false,

src/main/java/gregtechmod/api/GregTech_API.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
*/
4343
public class GregTech_API {
4444
/** For the API Version check */
45-
public static volatile int VERSION = 416;
45+
public static volatile int VERSION = 417;
4646

4747
/** The Mod Object itself. That is the GT_Mod-Object. It's needed to open GUI's and similar. */
4848
public static IGT_Mod gregtechmod;

src/main/java/gregtechmod/api/enums/Element.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,5 +306,5 @@ public int getMass() {
306306
return mProtons + mNeutrons + mAdditionalMass;
307307
}
308308

309-
public static volatile int VERSION = 416;
309+
public static volatile int VERSION = 417;
310310
}

src/main/java/gregtechmod/api/enums/Materials.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1188,5 +1188,5 @@ private Materials(int aMetaItemSubID, IIconContainer[] aIconSet, int aTypes, int
11881188
mChemicalFormula = mChemicalFormula.replaceAll("_", "-");
11891189
}
11901190

1191-
public static volatile int VERSION = 416;
1191+
public static volatile int VERSION = 417;
11921192
}

src/main/java/gregtechmod/api/enums/OrePrefixes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,5 +383,5 @@ public static boolean isInstanceOf(String aName, OrePrefixes aPrefix) {
383383
return aName == null ? false : aName.startsWith(aPrefix.toString());
384384
}
385385

386-
public static volatile int VERSION = 416;
386+
public static volatile int VERSION = 417;
387387
}

src/main/java/gregtechmod/api/metatileentity/BaseMetaPipeEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* This is the main TileEntity for EVERYTHING.
3737
*/
3838
public class BaseMetaPipeEntity extends BaseTileEntity implements IGregTechTileEntity {
39-
public static volatile int VERSION = 416;
39+
public static volatile int VERSION = 417;
4040

4141
public byte mConnections = 0;
4242

src/main/java/gregtechmod/api/metatileentity/BaseMetaTileEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* This is the main TileEntity for EVERYTHING.
4343
*/
4444
public class BaseMetaTileEntity extends BaseTileEntity implements IGregTechTileEntity {
45-
public static volatile int VERSION = 416;
45+
public static volatile int VERSION = 417;
4646

4747
protected MetaTileEntity mMetaTileEntity;
4848
protected int mStoredRF = 0, mStoredEnergy = 0, mStoredSteam = 0, mAverageEUInputIndex = 0, mAverageEUOutputIndex = 0;

src/main/java/gregtechmod/api/metatileentity/MetaPipeEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* "new GT_MetaTileEntity_E_Furnace(54, "GT_E_Furnace", "Automatic E-Furnace");"
3535
*/
3636
public abstract class MetaPipeEntity implements IMetaTileEntity {
37-
public static volatile int VERSION = 416;
37+
public static volatile int VERSION = 417;
3838

3939
/**
4040
* This variable tells, which directions the Block is connected to. It is a Bitmask.

src/main/java/gregtechmod/api/metatileentity/MetaTileEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* "new GT_MetaTileEntity_E_Furnace(54, "GT_E_Furnace", "Automatic E-Furnace");"
3939
*/
4040
public abstract class MetaTileEntity implements IMetaTileEntity {
41-
public static volatile int VERSION = 416;
41+
public static volatile int VERSION = 417;
4242

4343
@Override
4444
public byte getTileEntityBaseType() {

0 commit comments

Comments
 (0)