aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/postload/recipes/FuelRecipes.java
diff options
context:
space:
mode:
authorboubou19 <miisterunknown@gmail.com>2023-04-04 13:57:15 +0200
committerGitHub <noreply@github.com>2023-04-04 13:57:15 +0200
commit9b0cf70949beab972a7f9b2e6884dc9eb4cb8dca (patch)
tree72a719f446d59538cc51768cf780ba142d3512f2 /src/main/java/gregtech/loaders/postload/recipes/FuelRecipes.java
parent769168bf3db04d09bcb8566e72b0dddb64157e7d (diff)
downloadGT5-Unofficial-9b0cf70949beab972a7f9b2e6884dc9eb4cb8dca.tar.gz
GT5-Unofficial-9b0cf70949beab972a7f9b2e6884dc9eb4cb8dca.tar.bz2
GT5-Unofficial-9b0cf70949beab972a7f9b2e6884dc9eb4cb8dca.zip
Modid work (#1833)
* add all mods founds in NHCore * depracte old strings * add ars magica 2 * more enum work * use a switch * spotless * more mod id rework * more mod id rework * more mod id rework * should be last * spotless * rename to make more sense * add path attribute * add getResourcePath to enum * spotless
Diffstat (limited to 'src/main/java/gregtech/loaders/postload/recipes/FuelRecipes.java')
-rw-r--r--src/main/java/gregtech/loaders/postload/recipes/FuelRecipes.java34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/main/java/gregtech/loaders/postload/recipes/FuelRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/FuelRecipes.java
index a412b822e1..bccafd3983 100644
--- a/src/main/java/gregtech/loaders/postload/recipes/FuelRecipes.java
+++ b/src/main/java/gregtech/loaders/postload/recipes/FuelRecipes.java
@@ -1,7 +1,7 @@
package gregtech.loaders.postload.recipes;
-import static gregtech.api.enums.ModIDs.*;
-import static gregtech.api.enums.ModIDs.ThaumicTinkerer;
+import static gregtech.api.enums.Mods.*;
+import static gregtech.api.enums.Mods.ThaumicTinkerer;
import static gregtech.api.util.GT_ModHandler.getModItem;
import static gregtech.api.util.GT_RecipeConstants.FUEL_TYPE;
import static gregtech.api.util.GT_RecipeConstants.FUEL_VALUE;
@@ -45,7 +45,7 @@ public class FuelRecipes implements Runnable {
.addTo(GT_RecipeConstants.Fuel);
GT_Values.RA.stdBuilder()
- .itemInputs(getModItem(Thaumcraft.modID, "ItemShard", 1L, 6))
+ .itemInputs(getModItem(Thaumcraft.ID, "ItemShard", 1L, 6))
.noItemOutputs()
.noFluidInputs()
.noFluidOutputs()
@@ -56,7 +56,7 @@ public class FuelRecipes implements Runnable {
.addTo(GT_RecipeConstants.Fuel);
GT_Values.RA.stdBuilder()
- .itemInputs(getModItem(ForbiddenMagic.modID, "GluttonyShard", 1L))
+ .itemInputs(getModItem(ForbiddenMagic.ID, "GluttonyShard", 1L))
.noItemOutputs()
.noFluidInputs()
.noFluidOutputs()
@@ -67,7 +67,7 @@ public class FuelRecipes implements Runnable {
.addTo(GT_RecipeConstants.Fuel);
GT_Values.RA.stdBuilder()
- .itemInputs(getModItem(ForbiddenMagic.modID, "FMResource", 1L, 3))
+ .itemInputs(getModItem(ForbiddenMagic.ID, "FMResource", 1L, 3))
.noItemOutputs()
.noFluidInputs()
.noFluidOutputs()
@@ -78,7 +78,7 @@ public class FuelRecipes implements Runnable {
.addTo(GT_RecipeConstants.Fuel);
GT_Values.RA.stdBuilder()
- .itemInputs(getModItem(ForbiddenMagic.modID, "NetherShard", 1L))
+ .itemInputs(getModItem(ForbiddenMagic.ID, "NetherShard", 1L))
.noItemOutputs()
.noFluidInputs()
.noFluidOutputs()
@@ -89,7 +89,7 @@ public class FuelRecipes implements Runnable {
.addTo(GT_RecipeConstants.Fuel);
GT_Values.RA.stdBuilder()
- .itemInputs(getModItem(ForbiddenMagic.modID, "NetherShard", 1L, 1))
+ .itemInputs(getModItem(ForbiddenMagic.ID, "NetherShard", 1L, 1))
.noItemOutputs()
.noFluidInputs()
.noFluidOutputs()
@@ -100,7 +100,7 @@ public class FuelRecipes implements Runnable {
.addTo(GT_RecipeConstants.Fuel);
GT_Values.RA.stdBuilder()
- .itemInputs(getModItem(ForbiddenMagic.modID, "NetherShard", 1L, 2))
+ .itemInputs(getModItem(ForbiddenMagic.ID, "NetherShard", 1L, 2))
.noItemOutputs()
.noFluidInputs()
.noFluidOutputs()
@@ -111,7 +111,7 @@ public class FuelRecipes implements Runnable {
.addTo(GT_RecipeConstants.Fuel);
GT_Values.RA.stdBuilder()
- .itemInputs(getModItem(ForbiddenMagic.modID, "NetherShard", 1L, 3))
+ .itemInputs(getModItem(ForbiddenMagic.ID, "NetherShard", 1L, 3))
.noItemOutputs()
.noFluidInputs()
.noFluidOutputs()
@@ -122,7 +122,7 @@ public class FuelRecipes implements Runnable {
.addTo(GT_RecipeConstants.Fuel);
GT_Values.RA.stdBuilder()
- .itemInputs(getModItem(ForbiddenMagic.modID, "NetherShard", 1L, 4))
+ .itemInputs(getModItem(ForbiddenMagic.ID, "NetherShard", 1L, 4))
.noItemOutputs()
.noFluidInputs()
.noFluidOutputs()
@@ -133,7 +133,7 @@ public class FuelRecipes implements Runnable {
.addTo(GT_RecipeConstants.Fuel);
GT_Values.RA.stdBuilder()
- .itemInputs(getModItem(ForbiddenMagic.modID, "NetherShard", 1L, 5))
+ .itemInputs(getModItem(ForbiddenMagic.ID, "NetherShard", 1L, 5))
.noItemOutputs()
.noFluidInputs()
.noFluidOutputs()
@@ -144,7 +144,7 @@ public class FuelRecipes implements Runnable {
.addTo(GT_RecipeConstants.Fuel);
GT_Values.RA.stdBuilder()
- .itemInputs(getModItem(ForbiddenMagic.modID, "NetherShard", 1L, 6))
+ .itemInputs(getModItem(ForbiddenMagic.ID, "NetherShard", 1L, 6))
.noItemOutputs()
.noFluidInputs()
.noFluidOutputs()
@@ -155,7 +155,7 @@ public class FuelRecipes implements Runnable {
.addTo(GT_RecipeConstants.Fuel);
GT_Values.RA.stdBuilder()
- .itemInputs(getModItem(TaintedMagic.modID, "WarpedShard", 1L))
+ .itemInputs(getModItem(TaintedMagic.ID, "WarpedShard", 1L))
.noItemOutputs()
.noFluidInputs()
.noFluidOutputs()
@@ -166,7 +166,7 @@ public class FuelRecipes implements Runnable {
.addTo(GT_RecipeConstants.Fuel);
GT_Values.RA.stdBuilder()
- .itemInputs(getModItem(TaintedMagic.modID, "FluxShard", 1L))
+ .itemInputs(getModItem(TaintedMagic.ID, "FluxShard", 1L))
.noItemOutputs()
.noFluidInputs()
.noFluidOutputs()
@@ -177,7 +177,7 @@ public class FuelRecipes implements Runnable {
.addTo(GT_RecipeConstants.Fuel);
GT_Values.RA.stdBuilder()
- .itemInputs(getModItem(TaintedMagic.modID, "EldritchShard", 1L))
+ .itemInputs(getModItem(TaintedMagic.ID, "EldritchShard", 1L))
.noItemOutputs()
.noFluidInputs()
.noFluidOutputs()
@@ -188,7 +188,7 @@ public class FuelRecipes implements Runnable {
.addTo(GT_RecipeConstants.Fuel);
GT_Values.RA.stdBuilder()
- .itemInputs(getModItem(ThaumicTinkerer.modID, "kamiResource", 1L, 6))
+ .itemInputs(getModItem(ThaumicTinkerer.ID, "kamiResource", 1L, 6))
.noItemOutputs()
.noFluidInputs()
.noFluidOutputs()
@@ -199,7 +199,7 @@ public class FuelRecipes implements Runnable {
.addTo(GT_RecipeConstants.Fuel);
GT_Values.RA.stdBuilder()
- .itemInputs(getModItem(ThaumicTinkerer.modID, "kamiResource", 1L, 7))
+ .itemInputs(getModItem(ThaumicTinkerer.ID, "kamiResource", 1L, 7))
.noItemOutputs()
.noFluidInputs()
.noFluidOutputs()