Modding Help Trouble with recipes

Discussion in 'Starbound Modding' started by SevenIndex, Oct 24, 2019.

  1. SevenIndex

    SevenIndex Orbital Explorer

    I need some help with getting my custom items to show up in workbenches. I already have all the code in place, but they show only in admin mode and not survival. Any help would be greatly appreciated, thanks!
     
  2. Zaakari

    Zaakari Pangalactic Porcupine

    You need to have a "groups" property in your ".recipe" file. The value of this property should be an array which lists where your item should appear.
    For example, here is the "groups" property from the asset "/recipes/furniture1/decorative/coppershelf.recipe":
    Code:
    "groups" : [ "craftingfurniture", "decoration", "all" ]
    If you want it to appear elsewhere, have a look at different vanilla recipes (like the anvil ones, etc.)
     

Share This Page