fix #188: change in getRecipeInfo from getPlan() to getRecipeOutput()

This commit is contained in:
Tobias Wohlfarth 2015-07-15 22:41:26 +02:00
parent 5cdda63038
commit 79021f05e5

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());
}
}
}