aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/recipe
diff options
context:
space:
mode:
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
-rw-r--r--src/Java/gtPlusPlus/core/recipe/LOADER_Machine_Components.java14
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_General.java2
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_MachineComponents.java6
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java2
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_Shapeless.java2
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_Tools.java2
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPE_Batteries.java2
7 files changed, 15 insertions, 15 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/LOADER_Machine_Components.java b/src/Java/gtPlusPlus/core/recipe/LOADER_Machine_Components.java
index 895caabee2..745975c16d 100644
--- a/src/Java/gtPlusPlus/core/recipe/LOADER_Machine_Components.java
+++ b/src/Java/gtPlusPlus/core/recipe/LOADER_Machine_Components.java
@@ -96,8 +96,8 @@ public class LOADER_Machine_Components {
CI.sensor_ZPM = ItemUtils.simpleMetaStack("gregtech:gt.metaitem.01", 32696, 1);
CI.sensor_UV = ItemUtils.simpleMetaStack("gregtech:gt.metaitem.01", 32697, 1);
- registerComponent_ULV();
- registerComponent_MAX();
+ registerComponentsULV();
+ registerComponentsMAX();
}
private static void registerGTStandardComponents(){
@@ -134,7 +134,7 @@ public class LOADER_Machine_Components {
CI.sensor_UV = GregtechItemList.Sensor_UV.get(1);
CI.sensor_MAX = GregtechItemList.Sensor_MAX.get(1);
- registerComponent_ULV();
+ registerComponentsULV();
}
private static void registerGTNHComponents(){
@@ -171,11 +171,11 @@ public class LOADER_Machine_Components {
CI.sensor_ZPM = ItemUtils.simpleMetaStack("gregtech:gt.metaitem.01", 32696, 1);
CI.sensor_UV = ItemUtils.simpleMetaStack("gregtech:gt.metaitem.01", 32697, 1);
- registerComponent_ULV();
- registerComponent_MAX();
+ registerComponentsULV();
+ registerComponentsMAX();
}
- private static boolean registerComponent_ULV(){
+ private static boolean registerComponentsULV(){
CI.electricMotor_ULV = GregtechItemList.Electric_Motor_ULV.get(1);
CI.electricPump_ULV = GregtechItemList.Electric_Pump_ULV.get(1);
@@ -188,7 +188,7 @@ public class LOADER_Machine_Components {
return true;
}
- private static boolean registerComponent_MAX(){
+ private static boolean registerComponentsMAX(){
//Max Tier Components Blood Never added... Useless, lol.
CI.electricMotor_MAX = GregtechItemList.Electric_Motor_MAX.get(1);
CI.electricPump_MAX = GregtechItemList.Electric_Pump_MAX.get(1);
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java
index 4ee7d23dd9..523890c466 100644
--- a/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java
+++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java
@@ -40,7 +40,7 @@ public class RECIPES_General {
static ItemStack OUTPUT_Workbench_Bronze = ItemUtils.getSimpleStack(Item.getItemFromBlock(ModBlocks.blockWorkbench));
static ItemStack RECIPE_HydrogenDust = ItemUtils.getSimpleStack(ModItems.itemHydrogenBlob);
- public static void RECIPES_LOAD(){
+ public static void loadRecipes(){
if (LoadedMods.Gregtech){
RECIPE_BasicCasingIC2 = ItemUtils.getItemStack("IC2:blockMachine", 1);
run();
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_MachineComponents.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_MachineComponents.java
index 13c50b6060..bb4924a33a 100644
--- a/src/Java/gtPlusPlus/core/recipe/RECIPES_MachineComponents.java
+++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_MachineComponents.java
@@ -93,7 +93,7 @@ public class RECIPES_MachineComponents {
public static String smallGearTier9 = "gearGtSmallOsmium";
public static String smallGearTier10 = "gearGtSmallNeutronium";
- public static final void RECIPES_LOAD(){
+ public static final void loadRecipes(){
Logger.INFO("Loading Recipes for the Various Circuits and Machine components.");
if (!CORE.MAIN_GREGTECH_5U_EXPERIMENTAL_FORK){
run();
@@ -102,7 +102,7 @@ public class RECIPES_MachineComponents {
onlyULVComponents();
onlyMaxComponents();
}
- GregtechMachinePhase();
+ gregtechMachinePhase();
}
private static void run(){
@@ -381,7 +381,7 @@ public class RECIPES_MachineComponents {
CI.sensor_MAX);
}
- private static void GregtechMachinePhase(){
+ private static void gregtechMachinePhase(){
if (CORE.ConfigSwitches.enableCustomCircuits && !CORE.GTNH){
Logger.INFO("Adding Gregtech machine recipes for the circuits.");
GT_Values.RA.addFormingPressRecipe(GT_OreDictUnificator.get(OrePrefixes.plate, Materials.Silicon, 1L), GregtechItemList.Circuit_Parts_Wiring_IV.get(4L, new Object[0]), GregtechItemList.Circuit_Board_IV.get(1L, new Object[0]), 32, 256);
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java
index 0a6e6afef8..e1a4cb2157 100644
--- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java
+++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java
@@ -186,7 +186,7 @@ public class RECIPES_Machines {
- public static final void RECIPES_LOAD(){
+ public static final void loadRecipes(){
run();
Logger.INFO("Loading Recipes for the Various machine blocks.");
}
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Shapeless.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Shapeless.java
index 55cc086121..fd7db68d46 100644
--- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Shapeless.java
+++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Shapeless.java
@@ -19,7 +19,7 @@ public class RECIPES_Shapeless {
static String circuitUltimate = "circuitUltimate";
static ItemStack gearboxCasing_Tier_1;
- public static final void RECIPES_LOAD(){
+ public static final void loadRecipes(){
//run();
Logger.INFO("Loading Shapeless Recipes.");
}
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Tools.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Tools.java
index d58e241beb..6f79bed373 100644
--- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Tools.java
+++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Tools.java
@@ -125,7 +125,7 @@ public class RECIPES_Tools {
public static String plateDoubleNiChrome = "plateDoubleNichrome";
public static String plateIridiumAlloy = "plateAlloyIridium";
- public static final void RECIPES_LOAD(){
+ public static final void loadRecipes(){
run();
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPE_Batteries.java b/src/Java/gtPlusPlus/core/recipe/RECIPE_Batteries.java
index 759aadd7e0..19053ea4be 100644
--- a/src/Java/gtPlusPlus/core/recipe/RECIPE_Batteries.java
+++ b/src/Java/gtPlusPlus/core/recipe/RECIPE_Batteries.java
@@ -18,7 +18,7 @@ public class RECIPE_Batteries {
static ItemStack GT_Battery_Lithium = ItemUtils.simpleMetaStack("gregtech:gt.metaitem.01", 32538, 1);
static ItemStack machineTransformer_EV;
- public static void RECIPES_LOAD(){
+ public static void loadRecipes(){
if (LoadedMods.Gregtech){
machineTransformer_EV = ItemList.Transformer_EV_HV.get(1);