From b1caa56f5a977e0015ea50906aedbc49fd27587a Mon Sep 17 00:00:00 2001 From: "Aidan C. Brady" Date: Thu, 19 Feb 2015 18:36:08 -0500 Subject: [PATCH] Fixed PRC gaseous NEI usage lookup --- src/main/java/mekanism/client/nei/PRCRecipeHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/mekanism/client/nei/PRCRecipeHandler.java b/src/main/java/mekanism/client/nei/PRCRecipeHandler.java index 230638ac2..4234936fb 100644 --- a/src/main/java/mekanism/client/nei/PRCRecipeHandler.java +++ b/src/main/java/mekanism/client/nei/PRCRecipeHandler.java @@ -191,7 +191,7 @@ public class PRCRecipeHandler extends BaseRecipeHandler { for(Map.Entry irecipe : getRecipes()) { - if(irecipe.getValue().reactants.containsType((GasStack)results[0])) + if(irecipe.getValue().products.getGasOutput().isGasEqual((GasStack)results[0])) { arecipes.add(new CachedIORecipe(irecipe)); }