aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/slots
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2020-04-14 19:22:46 +0000
committerAlkalus <draknyte1@hotmail.com>2020-04-14 19:22:46 +0000
commitbc0b4b644dd410c86c925c7ef2422bd18789437c (patch)
treedd96160d195653e79ceaf6f18b982f4f5f5a265d /src/Java/gtPlusPlus/core/slots
parente724a728061ec4a78cff73a4a2dd46eea4af4521 (diff)
parent994cb1962434737cf3cfadc06361db2f2cec2020 (diff)
downloadGT5-Unofficial-bc0b4b644dd410c86c925c7ef2422bd18789437c.tar.gz
GT5-Unofficial-bc0b4b644dd410c86c925c7ef2422bd18789437c.tar.bz2
GT5-Unofficial-bc0b4b644dd410c86c925c7ef2422bd18789437c.zip
Merged in RecipeVerification(pull request #8)
Recipe verification
Diffstat (limited to 'src/Java/gtPlusPlus/core/slots')
-rw-r--r--src/Java/gtPlusPlus/core/slots/SlotChemicalPlantInput.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Java/gtPlusPlus/core/slots/SlotChemicalPlantInput.java b/src/Java/gtPlusPlus/core/slots/SlotChemicalPlantInput.java
index add55b8d27..4b9cda0b9b 100644
--- a/src/Java/gtPlusPlus/core/slots/SlotChemicalPlantInput.java
+++ b/src/Java/gtPlusPlus/core/slots/SlotChemicalPlantInput.java
@@ -1,7 +1,7 @@
package gtPlusPlus.core.slots;
-import gregtech.api.util.Recipe_GT;
-import gregtech.api.util.Recipe_GT.Gregtech_Recipe_Map;
+import gregtech.api.util.GTPP_Recipe;
+import gregtech.api.util.GTPP_Recipe.GTPP_Recipe_Map;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
@@ -20,9 +20,9 @@ public class SlotChemicalPlantInput extends Slot {
}
public static boolean isItemValidForChemicalPlantSlot(ItemStack aStack) {
- boolean validItem = Gregtech_Recipe_Map.sChemicalPlantRecipes.containsInput(aStack);
+ boolean validItem = GTPP_Recipe_Map.sChemicalPlantRecipes.containsInput(aStack);
if (!validItem) {
- for (Recipe_GT f : Gregtech_Recipe_Map.sChemicalPlantRecipes.mRecipeList) {
+ for (GTPP_Recipe f : GTPP_Recipe_Map.sChemicalPlantRecipes.mRecipeList) {
if (f.mFluidInputs.length > 0) {
for (FluidStack g : f.mFluidInputs) {
if (g != null) {