aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/oreprocessing/ProcessingDye.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/loaders/oreprocessing/ProcessingDye.java')
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingDye.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingDye.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingDye.java
index 36c0a891a6..f3e82c0b0e 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingDye.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingDye.java
@@ -1,6 +1,6 @@
package gregtech.loaders.oreprocessing;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sMixerRecipes;
+import static gregtech.api.recipe.RecipeMaps.mixerRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import static gregtech.api.util.GT_RecipeConstants.UniversalChemical;
@@ -47,7 +47,7 @@ public class ProcessingDye implements IOreRecipeRegistrator {
.fluidOutputs(FluidRegistry.getFluidStack(fluidName, 192))
.duration(16 * TICKS)
.eut(4)
- .addTo(sMixerRecipes);
+ .addTo(mixerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1, stack), GT_Utility.getIntegratedCircuit(1))
@@ -55,7 +55,7 @@ public class ProcessingDye implements IOreRecipeRegistrator {
.fluidOutputs(FluidRegistry.getFluidStack(fluidName, 216))
.duration(16 * TICKS)
.eut(4)
- .addTo(sMixerRecipes);
+ .addTo(mixerRecipes);
}
public void registerAlloySmelter(ItemStack stack, Dyes dye) {