Fixed PRC gaseous NEI usage lookup

This commit is contained in:
Aidan C. Brady 2015-02-19 18:36:08 -05:00
parent 1e78cbf60e
commit b1caa56f5a

View file

@ -191,7 +191,7 @@ public class PRCRecipeHandler extends BaseRecipeHandler
{
for(Map.Entry<PressurizedReactants, PressurizedRecipe> irecipe : getRecipes())
{
if(irecipe.getValue().reactants.containsType((GasStack)results[0]))
if(irecipe.getValue().products.getGasOutput().isGasEqual((GasStack)results[0]))
{
arecipes.add(new CachedIORecipe(irecipe));
}