diff options
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java | 8 | ||||
-rw-r--r-- | src/main/java/com/elisis/gtnhlanth/loader/RecipeLoader.java | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java b/src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java index 27e07cce92..6fc5f2f81e 100644 --- a/src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java +++ b/src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java @@ -16,8 +16,8 @@ public class WerkstoffMaterialPool implements Runnable { private static final int offsetID = 11_000; private static final int offsetID2 = 11_100; private static final int offsetID3 = 11_300; - private static final int offsetID4 = 12_000; - private static final int offsetID5 = 12_100; // 11500 has been used in GalaxySpace + private static final int offsetID4 = 11_400; + private static final int offsetID5 = 11_460; /* * public static final Werkstoff __ = new Werkstoff( new short[] {_, _, _}, "__", new Werkstoff.Stats(), @@ -1684,7 +1684,7 @@ public class WerkstoffMaterialPool implements Runnable { new Werkstoff.Stats(), Werkstoff.Types.MATERIAL, new Werkstoff.GenerationFeatures().disable().onlyDust().addMolten(), - offsetID4 + 98, + offsetID5 + 38, TextureSet.SET_DULL); public static final Werkstoff CeriumDopedLutetiumAluminiumGarnet = new Werkstoff( @@ -1694,7 +1694,7 @@ public class WerkstoffMaterialPool implements Runnable { new Werkstoff.Stats(), Werkstoff.Types.MATERIAL, new Werkstoff.GenerationFeatures().disable().addGems(), - offsetID4 + 99, + offsetID5 + 39, TextureSet.SET_GEM_VERTICAL); // public static final Werkstoff RawCeriumDopedLutetiumAluminiumGarnetPart = new Werkstoff( diff --git a/src/main/java/com/elisis/gtnhlanth/loader/RecipeLoader.java b/src/main/java/com/elisis/gtnhlanth/loader/RecipeLoader.java index ae3212540a..5c6e1bb621 100644 --- a/src/main/java/com/elisis/gtnhlanth/loader/RecipeLoader.java +++ b/src/main/java/com/elisis/gtnhlanth/loader/RecipeLoader.java @@ -35,7 +35,6 @@ import goodgenerator.items.MyMaterial; import gregtech.api.enums.GT_Values; import gregtech.api.enums.ItemList; import gregtech.api.enums.Materials; -import gregtech.api.enums.Mods; import gregtech.api.enums.OrePrefixes; import gregtech.api.util.GTPP_Recipe; import gregtech.api.util.GT_Log; @@ -2129,14 +2128,15 @@ public class RecipeLoader { // 2B DilutedSamariumRareEarthSolution + 3B Oxalate // =EV@10s= - // 5 ImpureSamariumOxalate + 0.1*2 LepersonniteDust + 50L MuddySamariumRareEarthSolution + // 5 ImpureSamariumOxalate + 50L MuddySamariumRareEarthSolution + 0.1*2 LepersonniteDust + // LepersonniteDust -> DephosphatedSamariumConcentrate GT_Values.RA.stdBuilder().itemInputs(GT_Utility.getIntegratedCircuit(13)) .fluidInputs( DilutedSamariumRareEarthSolution.getFluidOrGas(2000), MyMaterial.oxalate.getFluidOrGas(3000)) .itemOutputs( ImpureSamariumOxalate.get(OrePrefixes.dust, 5), - GT_ModHandler.getModItem(Mods.GTPlusPlus.ID, "itemDustLepersonnite", 1)) + DephosphatedSamariumConcentrate.get(OrePrefixes.dust, 3)) .fluidOutputs(MuddySamariumRareEarthSolution.getFluidOrGas(50)).outputChances(10000, 1000).eut(1920) .duration(200).addTo(GT_Recipe.GT_Recipe_Map.sMultiblockChemicalRecipes); |