Merge pull request #168 from Voidi/master
fix #117: Railcraft Coke oven recipe remove;
This commit is contained in:
commit
e84eb65fb6
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ public class CokeOven {
|
|||
@Override
|
||||
public void apply() {
|
||||
for (ICokeOvenRecipe r : RailcraftHelper.oven) {
|
||||
if (r.getOutput() != null && r.getOutput().getItem().equals(stack)) {
|
||||
if (r.getOutput() != null && r.getOutput().isItemEqual(stack) && ItemStack.areItemStackTagsEqual(r.getOutput(), stack)) {
|
||||
recipes.add(r);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue