Skip to content

Commit

Permalink
Update v417.56
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDarkDnKTv committed Aug 6, 2023
1 parent d92448a commit 86e83a3
Show file tree
Hide file tree
Showing 20 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ compileJava {
sourceCompatibility = targetCompatibility = '1.8'
}

version = "v416.44"
version = "v417.56"
group = "gregtechmod"
archivesBaseName = "gregtechmod"

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gregtechmod/GT_Mod.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public class GT_Mod implements IGT_Mod {
@SidedProxy(clientSide = "gregtechmod.common.GT_Client", serverSide = "gregtechmod.common.GT_Server")
public static GT_Proxy gregtechproxy;

public static volatile int VERSION = 416;
public static volatile int VERSION = 417;
public static volatile int REQUIRED_IC2 = 823;
public static boolean
sThaumiumObtainable = false,
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gregtechmod/api/GregTech_API.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
*/
public class GregTech_API {
/** For the API Version check */
public static volatile int VERSION = 416;
public static volatile int VERSION = 417;

/** The Mod Object itself. That is the GT_Mod-Object. It's needed to open GUI's and similar. */
public static IGT_Mod gregtechmod;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gregtechmod/api/enums/Element.java
Original file line number Diff line number Diff line change
Expand Up @@ -306,5 +306,5 @@ public int getMass() {
return mProtons + mNeutrons + mAdditionalMass;
}

public static volatile int VERSION = 416;
public static volatile int VERSION = 417;
}
2 changes: 1 addition & 1 deletion src/main/java/gregtechmod/api/enums/Materials.java
Original file line number Diff line number Diff line change
Expand Up @@ -1188,5 +1188,5 @@ private Materials(int aMetaItemSubID, IIconContainer[] aIconSet, int aTypes, int
mChemicalFormula = mChemicalFormula.replaceAll("_", "-");
}

public static volatile int VERSION = 416;
public static volatile int VERSION = 417;
}
2 changes: 1 addition & 1 deletion src/main/java/gregtechmod/api/enums/OrePrefixes.java
Original file line number Diff line number Diff line change
Expand Up @@ -383,5 +383,5 @@ public static boolean isInstanceOf(String aName, OrePrefixes aPrefix) {
return aName == null ? false : aName.startsWith(aPrefix.toString());
}

public static volatile int VERSION = 416;
public static volatile int VERSION = 417;
}
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* This is the main TileEntity for EVERYTHING.
*/
public class BaseMetaPipeEntity extends BaseTileEntity implements IGregTechTileEntity {
public static volatile int VERSION = 416;
public static volatile int VERSION = 417;

public byte mConnections = 0;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
* This is the main TileEntity for EVERYTHING.
*/
public class BaseMetaTileEntity extends BaseTileEntity implements IGregTechTileEntity {
public static volatile int VERSION = 416;
public static volatile int VERSION = 417;

protected MetaTileEntity mMetaTileEntity;
protected int mStoredRF = 0, mStoredEnergy = 0, mStoredSteam = 0, mAverageEUInputIndex = 0, mAverageEUOutputIndex = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* "new GT_MetaTileEntity_E_Furnace(54, "GT_E_Furnace", "Automatic E-Furnace");"
*/
public abstract class MetaPipeEntity implements IMetaTileEntity {
public static volatile int VERSION = 416;
public static volatile int VERSION = 417;

/**
* This variable tells, which directions the Block is connected to. It is a Bitmask.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* "new GT_MetaTileEntity_E_Furnace(54, "GT_E_Furnace", "Automatic E-Furnace");"
*/
public abstract class MetaTileEntity implements IMetaTileEntity {
public static volatile int VERSION = 416;
public static volatile int VERSION = 417;

@Override
public byte getTileEntityBaseType() {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gregtechmod/api/recipe/Recipe.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* I know this File causes some Errors, because of missing Main Functions, but if you just need to compile Stuff, then remove said erroreous Functions.
*/
public class Recipe {
public static volatile int VERSION = 416;
public static volatile int VERSION = 417;

private List<Ingredient> itemInputs;
private List<ItemStack> itemOutputs;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* All Functions run usually in a seperate try/catch Block, so that failed Logic won't crash the TileEntity.
*/
public abstract class GT_CircuitryBehavior {
public static volatile int VERSION = 416;
public static volatile int VERSION = 417;

/**
* @param aIndex 0 - 1023 are my own Indices, so use other Numbers!
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gregtechmod/api/util/GT_Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import net.minecraftforge.common.config.Property;

public class GT_Config {
public static volatile int VERSION = 416;
public static volatile int VERSION = 417;

public static boolean system = false;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gregtechmod/api/util/GT_CoverBehavior.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* For Covers with a special behavior.
*/
public abstract class GT_CoverBehavior {
public static volatile int VERSION = 416;
public static volatile int VERSION = 417;

/**
* Gives all Covers which are out of these Stacks a special behavior.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gregtechmod/api/util/GT_LanguageManager.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package gregtechmod.api.util;

public class GT_LanguageManager {
public static volatile int VERSION = 416;
public static volatile int VERSION = 417;

public static String[] mNameList0 = {"Adv_Machine", "Fusioncoil", "Iridium_reinforced_Stone", "Block_of_Silver", "Block_of_Ruby", "Block_of_Sapphire", "LESU_Block", "Block_of_Aluminium", "Block_of_Titanium", "Block_of_Chrome", "Highly_Advanced_Machineblock", "Block_of_Steel", "Block_of_Brass", "Standard_Machine_Casing", "Reinforced_Machine_Casing", "Advanced_Machine_Casing"};
public static String[] mNameList1 = {"GT_BUG", "Fusionreactor", "Lightningrod", "Quantumchest", "GregTech_Computercube", "UUM_Assembler", "Sonictron", "Lapotronic_Energystorageunit", "Interdimensional_Energystorageunit", "Adjustable_Energystorageunit", "Charge_O_Mat", "Industrial_Centrifuge", "Superconductorwire", "Playerdetector", "Matterfabricator", "Supercondensator"};
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gregtechmod/api/util/GT_ModHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
* Due to the many imports, this File can cause compile Problems if not all the APIs are installed
*/
public class GT_ModHandler {
public static volatile int VERSION = 416;
public static volatile int VERSION = 417;

/**
* Returns if that Liquid is Water
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* P.S. It is intended to be named "Unificator" and not "Unifier", because that sounds more awesome.
*/
public class GT_OreDictUnificator {
public static volatile int VERSION = 416;
public static volatile int VERSION = 417;

private static final HashMap<String, ItemStack> sName2OreMap = new HashMap<String, ItemStack>();
private static final HashMap<ItemStack, String> sToRegister = new HashMap<ItemStack, String>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Class for Automatic Recipe registering.
*/
public class GT_RecipeRegistrator {
public static volatile int VERSION = 416;
public static volatile int VERSION = 417;
/**
* List of Materials, which are used in the Creation of Sticks. All Rod Materials are automatically added to this List.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gregtechmod/api/util/GT_Utility.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
* Just a few Utility Functions I use.
*/
public class GT_Utility {
public static volatile int VERSION = 416;
public static volatile int VERSION = 417;

public static final List<Character> sNumberedCharacters = Arrays.asList('0', '1', '2', '3', '4', '5', '6', '7', '8', '9');
public static final List<Character> sUpperCasedCharacters = Arrays.asList('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z');
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"modid": "gregtech_addon",
"name": "GregTech-Addon",
"description": "This Addon adds the awesome Technology of GregTech-Intergalactical to your World! Fusionreactors, Lightningrods and many other Technologies and convenient Recipes are added by this Addon, if you let them enabled in the allmighty Config, of course",
"mcversion": "1.7.10",
"version": "4.16.40",
"mcversion": "${mcversion}",
"version": "4.17.56",
"logoFile": "/assets/gregtech_addon/textures/LogoGTI_Long.png",
"url": "https://github.com/Nukepowered/GregTech4",
"updateUrl": "",
Expand Down

0 comments on commit 86e83a3

Please sign in to comment.