diff options
author | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2019-10-20 22:54:33 +0200 |
---|---|---|
committer | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2019-10-20 22:54:33 +0200 |
commit | 26579069b0d2b033c70311231d7572a022c5d307 (patch) | |
tree | c78b49bb914d5935c9f7d5ea6f73c34c3d611f75 /src | |
parent | a1f3cf977795205635e47875d1c3b65362298219 (diff) | |
download | GT5-Unofficial-26579069b0d2b033c70311231d7572a022c5d307.tar.gz GT5-Unofficial-26579069b0d2b033c70311231d7572a022c5d307.tar.bz2 GT5-Unofficial-26579069b0d2b033c70311231d7572a022c5d307.zip |
fusion fix
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
Former-commit-id: f35ece6e934deb7d989f26cd4f1046311ad4492a
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/com/github/bartimaeusnek/bartworks/system/material/GT_Enhancement/PlatinumSludgeOverHaul.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/GT_Enhancement/PlatinumSludgeOverHaul.java b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/GT_Enhancement/PlatinumSludgeOverHaul.java index 94e2bdf13b..660cfeea16 100644 --- a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/GT_Enhancement/PlatinumSludgeOverHaul.java +++ b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/GT_Enhancement/PlatinumSludgeOverHaul.java @@ -49,6 +49,7 @@ import net.minecraft.item.crafting.*; import net.minecraftforge.fluids.FluidStack; import net.minecraftforge.oredict.ShapedOreRecipe; import net.minecraftforge.oredict.ShapelessOreRecipe; +import org.apache.commons.lang3.ClassUtils; import org.apache.commons.lang3.reflect.FieldUtils; import java.lang.reflect.Field; @@ -232,7 +233,7 @@ public class PlatinumSludgeOverHaul { //gt machines maploop: for (GT_Recipe.GT_Recipe_Map map : GT_Recipe.GT_Recipe_Map.sMappings) { - if (map == GT_Recipe.GT_Recipe_Map.sUnboxinatorRecipes || map == GT_Recipe.GT_Recipe_Map.sBoxinatorRecipes) + if (map == GT_Recipe.GT_Recipe_Map.sFusionRecipes || map == GT_Recipe.GT_Recipe_Map.sUnboxinatorRecipes || map == GT_Recipe.GT_Recipe_Map.sBoxinatorRecipes) continue; HashSet<GT_Recipe> toDel = new HashSet<GT_Recipe>(); recipeloop: |