Cleanup and warnings
This commit is contained in:
parent
d1178df673
commit
5406d08f5d
14 changed files with 29 additions and 49 deletions
|
@ -24,15 +24,11 @@
|
|||
|
||||
package techreborn.init;
|
||||
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.util.Identifier;
|
||||
import reborncore.common.crafting.RebornRecipe;
|
||||
import reborncore.common.crafting.RebornRecipeType;
|
||||
import reborncore.common.crafting.RecipeManager;
|
||||
import reborncore.common.registration.RebornRegister;
|
||||
import net.minecraft.fluid.Fluid;
|
||||
import io.github.prospector.silk.fluid.FluidInstance;
|
||||
import reborncore.common.fluid.FluidUtil;
|
||||
import techreborn.TechReborn;
|
||||
import techreborn.api.recipe.recipes.BlastFurnaceRecipe;
|
||||
import techreborn.api.recipe.recipes.IndustrialGrinderRecipe;
|
||||
|
@ -66,30 +62,22 @@ public class ModRecipes {
|
|||
|
||||
/*
|
||||
|
||||
ExtractorRecipes.init();
|
||||
RollingMachineRecipes.init();
|
||||
FluidGeneratorRecipes.init();
|
||||
IndustrialGrinderRecipes.init();
|
||||
IndustrialCentrifugeRecipes.init();
|
||||
|
||||
IndustrialElectrolyzerRecipes.init();
|
||||
ImplosionCompressorRecipes.init();
|
||||
ScrapboxRecipes.init();
|
||||
ChemicalReactorRecipes.init();
|
||||
|
||||
FusionReactorRecipes.init();
|
||||
DistillationTowerRecipes.init();
|
||||
|
||||
FluidReplicatorRecipes.init();
|
||||
|
||||
addVacuumFreezerRecipes();
|
||||
addGrinderRecipes();
|
||||
addCompressorRecipes();
|
||||
|
||||
*/
|
||||
}
|
||||
|
||||
public static void postInit() {
|
||||
//IndustrialSawmillRecipes.init();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -42,28 +42,28 @@ public class ImplosionCompressorRecipes extends RecipeMethods {
|
|||
// register(getOre("dustPeridot", 4), getMaterial("peridot", 3, Type.GEM), 12);
|
||||
// register(getOre("dustRedGarnet", 4), getMaterial("red_garnet", 3, Type.GEM), 8);
|
||||
// register(getOre("dustYellowGarnet", 4), getMaterial("yellow_garnet", 3, Type.GEM), 8);
|
||||
if (oresExist("dustApatite", "gemApatite")) {
|
||||
register(getOre("dustApatite", 4), getOre("gemApatite", 3), 12);
|
||||
}
|
||||
|
||||
if (oresExist("dustCertusQuartz", "crystalCertusQuartz")) {
|
||||
register(getOre("dustCertusQuartz", 4), getOre("crystalCertusQuartz", 3), 12);
|
||||
}
|
||||
if (oresExist("dustAmethyst", "gemAmethyst")) {
|
||||
register(getOre("dustAmethyst", 4), getOre("gemAmethyst", 3), 12);
|
||||
}
|
||||
|
||||
if (oresExist("dustTopaz", "gemTopaz")) {
|
||||
register(getOre("dustTopaz", 4), getOre("gemTopaz", 3), 12);
|
||||
}
|
||||
|
||||
if (oresExist("dustTanzanite", "gemTanzanite")) {
|
||||
register(getOre("dustTanzanite", 4), getOre("gemTanzanite", 3), 12);
|
||||
}
|
||||
|
||||
if (oresExist("dustMalachite", "gemMalachite")) {
|
||||
register(getOre("dustMalachite", 4), getOre("gemMalachite", 3), 12);
|
||||
}
|
||||
// if (oresExist("dustApatite", "gemApatite")) {
|
||||
// register(getOre("dustApatite", 4), getOre("gemApatite", 3), 12);
|
||||
// }
|
||||
//
|
||||
// if (oresExist("dustCertusQuartz", "crystalCertusQuartz")) {
|
||||
// register(getOre("dustCertusQuartz", 4), getOre("crystalCertusQuartz", 3), 12);
|
||||
// }
|
||||
// if (oresExist("dustAmethyst", "gemAmethyst")) {
|
||||
// register(getOre("dustAmethyst", 4), getOre("gemAmethyst", 3), 12);
|
||||
// }
|
||||
//
|
||||
// if (oresExist("dustTopaz", "gemTopaz")) {
|
||||
// register(getOre("dustTopaz", 4), getOre("gemTopaz", 3), 12);
|
||||
// }
|
||||
//
|
||||
// if (oresExist("dustTanzanite", "gemTanzanite")) {
|
||||
// register(getOre("dustTanzanite", 4), getOre("gemTanzanite", 3), 12);
|
||||
// }
|
||||
//
|
||||
// if (oresExist("dustMalachite", "gemMalachite")) {
|
||||
// register(getOre("dustMalachite", 4), getOre("gemMalachite", 3), 12);
|
||||
// }
|
||||
|
||||
// register(getOre("blockRedstone", 9), getOre("dustRedGarnet", 4), 4);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue