ShapelessRecipe?

Discussion in 'Plugin Development' started by CaiusTSM, Jun 24, 2011.

Thread Status:
Not open for further replies.
  1. Offline

    CaiusTSM

    Hello, I am making a plugin, and I am trying to use shapeless recipes to craft a stick. I tried adding 2 wood planks to a shapeless recipe, but when I use getResult() instead of getting a stick I get a wood plank again. Could someone tell me if you can craft items with shapeless recipes, and how? Do I have to use a shaped recipe instead?
     
  2. Offline

    nisovin

    Just tried this:

    Code:
    getServer().addRecipe(new ShapelessRecipe(new ItemStack(Material.STICK, 1)).addIngredient(2, Material.WOOD));
    And it seems to work fine.
     
  3. Offline

    CaiusTSM

    ah ok nvm I was being stupid.
     
Thread Status:
Not open for further replies.

Share This Page