Merge pull request #189 from Voidi/master

fix #188: change in getRecipeInfo from getPlan() to getRecipeOutput()
This commit is contained in:
Tobias Wohlfarth 2015-07-15 22:46:54 +02:00
commit 9776048015

View file

@ -80,7 +80,7 @@ public class ThermionicFabricator {
@Override
public String getRecipeInfo(Recipe recipe) {
return LogHelper.getStackDescription(recipe.getPlan());
return LogHelper.getStackDescription(recipe.asIRecipe().getRecipeOutput());
}
}
@ -139,7 +139,7 @@ public class ThermionicFabricator {
@Override
public String getRecipeInfo(Recipe recipe) {
return LogHelper.getStackDescription(recipe.getPlan());
return LogHelper.getStackDescription(recipe.asIRecipe().getRecipeOutput());
}
}
}