Also better logging for AE2 Grind recipe removal

This commit is contained in:
Zixxl 2015-06-16 17:11:37 +02:00
parent e71fd16d11
commit 891ee31ecb

View file

@ -41,9 +41,8 @@ public class Grind {
}
private static class Remove extends BaseListRemoval {
public Remove(ItemStack stack) {
super(AEApi.instance().registries().grinder().getRecipes(), stack);
super("Applied Energistics 2 Grinder", AEApi.instance().registries().grinder().getRecipes(), stack);
}
@Override
@ -55,6 +54,11 @@ public class Grind {
}
super.apply();
}
@Override
public String getRecipeInfo() {
return stack.getDisplayName();
}
}