Skip to content

Commit

Permalink
Fix recipe registration
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryLoenwind committed Oct 5, 2016
1 parent 3273331 commit 6c875e8
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -16,9 +16,15 @@
import net.minecraftforge.fluids.FluidStack;
import net.minecraftforge.fluids.FluidTank;
import net.minecraftforge.oredict.OreDictionary;
import net.minecraftforge.oredict.RecipeSorter;
import net.minecraftforge.oredict.RecipeSorter.Category;

public class NutritiousStickRecipe implements IRecipe {

static {
RecipeSorter.register("EnderIO:nutritiousStick", NutritiousStickRecipe.class, Category.SHAPELESS, "after:minecraft:shapeless");
}

@Override
public boolean matches(InventoryCrafting inv, World worldIn) {

Expand Down

0 comments on commit 6c875e8

Please sign in to comment.