fix #188: change in getRecipeInfo from getPlan() to getRecipeOutput()
This commit is contained in:
parent
5cdda63038
commit
79021f05e5
1 changed files with 2 additions and 2 deletions
|
@ -80,7 +80,7 @@ public class ThermionicFabricator {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getRecipeInfo(Recipe recipe) {
|
public String getRecipeInfo(Recipe recipe) {
|
||||||
return LogHelper.getStackDescription(recipe.getPlan());
|
return LogHelper.getStackDescription(recipe.asIRecipe().getRecipeOutput());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -139,7 +139,7 @@ public class ThermionicFabricator {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getRecipeInfo(Recipe recipe) {
|
public String getRecipeInfo(Recipe recipe) {
|
||||||
return LogHelper.getStackDescription(recipe.getPlan());
|
return LogHelper.getStackDescription(recipe.asIRecipe().getRecipeOutput());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue