Futurepack Mod - Now with flyable Spaceships!

Futurepack Mod - Now with flyable Spaceships!

1M Downloads

Crash with wrapup

brachy84 opened this issue ยท 1 comments

commented

Newest Futurepack and wrapup version
Forge 2796
https://pastebin.com/EsFZWqut

commented

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