aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/postload/GT_PostLoad.java
diff options
context:
space:
mode:
authormiozune <miozune@gmail.com>2022-08-05 22:33:55 +0900
committerGitHub <noreply@github.com>2022-08-05 20:33:55 +0700
commit905b8261adf0f9c5b91159b2338aad2decdf3bd3 (patch)
tree42d512d0cdfdaaf60a5e5d5cf5d2e3399fc55a6b /src/main/java/gregtech/loaders/postload/GT_PostLoad.java
parentb294448b7e9da8d3e2580e29efab106f13c2de17 (diff)
downloadGT5-Unofficial-905b8261adf0f9c5b91159b2338aad2decdf3bd3.tar.gz
GT5-Unofficial-905b8261adf0f9c5b91159b2338aad2decdf3bd3.tar.bz2
GT5-Unofficial-905b8261adf0f9c5b91159b2338aad2decdf3bd3.zip
Add ghost circuit slot for Mass Fabricator & add circuit to NEI fake recipe (#1190)
Diffstat (limited to 'src/main/java/gregtech/loaders/postload/GT_PostLoad.java')
-rw-r--r--src/main/java/gregtech/loaders/postload/GT_PostLoad.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/gregtech/loaders/postload/GT_PostLoad.java b/src/main/java/gregtech/loaders/postload/GT_PostLoad.java
index 02edca4332..77b0c89ba6 100644
--- a/src/main/java/gregtech/loaders/postload/GT_PostLoad.java
+++ b/src/main/java/gregtech/loaders/postload/GT_PostLoad.java
@@ -55,7 +55,7 @@ public class GT_PostLoad {
GT_Log.out.println("GT_Mod: Single Non Block Damagable Recipe List -> Outputs null or stackSize <=0: " + GT_ModHandler.sSingleNonBlockDamagableRecipeList_warntOutput.toString());
}
-
+
public static void removeIc2Recipes(Map<IRecipeInput, RecipeOutput> aMaceratorRecipeList, Map<IRecipeInput, RecipeOutput> aCompressorRecipeList, Map<IRecipeInput, RecipeOutput> aExtractorRecipeList, Map<IRecipeInput, RecipeOutput> aOreWashingRecipeList, Map<IRecipeInput, RecipeOutput> aThermalCentrifugeRecipeList) {
Stopwatch stopwatch = Stopwatch.createStarted();
// remove gemIridium exploit
@@ -72,7 +72,7 @@ public class GT_PostLoad {
GT_ModHandler.addIC2RecipesToGT(aThermalCentrifugeRecipeList, GT_Recipe.GT_Recipe_Map.sThermalCentrifugeRecipes, true, true, true);
GT_Mod.GT_FML_LOGGER.info("IC2 Removal (" + stopwatch.stop() + "). Have a Cake.");
}
-
+
public static void registerFluidCannerRecipes() {
ItemStack ISdata0 = new ItemStack(Items.potionitem, 1, 0);
@@ -137,7 +137,7 @@ public class GT_PostLoad {
if (!GT_MetaTileEntity_Massfabricator.sRequiresUUA)
GT_Recipe.GT_Recipe_Map.sMassFabFakeRecipes.addFakeRecipe(false, null, null, null, null, new FluidStack[]{Materials.UUMatter.getFluid(1L)}, GT_MetaTileEntity_Massfabricator.sDurationMultiplier, 256, 0);
- GT_Recipe.GT_Recipe_Map.sMassFabFakeRecipes.addFakeRecipe(false, null, null, null, new FluidStack[]{Materials.UUAmplifier.getFluid(GT_MetaTileEntity_Massfabricator.sUUAperUUM)}, new FluidStack[]{Materials.UUMatter.getFluid(1L)}, GT_MetaTileEntity_Massfabricator.sDurationMultiplier / GT_MetaTileEntity_Massfabricator.sUUASpeedBonus, 256, 0);
+ GT_Recipe.GT_Recipe_Map.sMassFabFakeRecipes.addFakeRecipe(false, new ItemStack[]{GT_Utility.getIntegratedCircuit(1)}, null, null, new FluidStack[]{Materials.UUAmplifier.getFluid(GT_MetaTileEntity_Massfabricator.sUUAperUUM)}, new FluidStack[]{Materials.UUMatter.getFluid(1L)}, GT_MetaTileEntity_Massfabricator.sDurationMultiplier / GT_MetaTileEntity_Massfabricator.sUUASpeedBonus, 256, 0);
GT_Recipe.GT_Recipe_Map.sRockBreakerFakeRecipes.addFakeRecipe(false, new ItemStack[]{ItemList.Display_ITS_FREE.getWithName(0L, "Place Lava on Side")}, new ItemStack[]{new ItemStack(
Blocks.cobblestone, 1)}, null, null, null, 16, 30, 0);
GT_Recipe.GT_Recipe_Map.sRockBreakerFakeRecipes.addFakeRecipe(false, new ItemStack[]{ItemList.Display_ITS_FREE.getWithName(0L, "Place Lava on Top")}, new ItemStack[]{new ItemStack(Blocks.stone, 1)}, null, null, null, 16, 30, 0);