Crash with wrapup
brachy84 opened this issue ยท 1 comments
Newest Futurepack and wrapup version
Forge 2796
https://pastebin.com/EsFZWqut
Wraup call a mthod which is no longer present. Please open an issue at their bug tracker and link it here.
Available methods are:
public static ZentrifugeRecipe addRecipe(ItemPredicates in, ItemStack[] out, int support)
{
return instance.addZentrifugeRecipe(in, out, support);
}
public static ZentrifugeRecipe addRecipe(ItemStack in, ItemStack[] out, int support)
{
return instance.addZentrifugeRecipe(new ItemStackPredicate(in), out, support);
}
public ZentrifugeRecipe addZentrifugeRecipe(ItemPredicates in, ItemStack[] out, int support)
{
ZentrifugeRecipe z = new ZentrifugeRecipe(in, out, support);
recipes.add(z);
FPLog.logger.debug(z.toString());
return z;
}