Page 1 of 1

Hide recipes only in player menu

Posted: Wed Jun 26, 2019 7:15 am
by Linver
Hi all,
is there a way to hide recipes only player menu but will be displayed and selectable opening the right assembler machine?

Re: Hide recipes only in player menu

Posted: Fri Jun 28, 2019 2:00 am
by sinropa
Note that a recipe can be hidden and enabled:

Code: Select all


data:extend({
  {
    type = "recipe",
    name = "coal",
    energy_required = .1,
    enabled = true,
	hidden = true,
    ingredients =
    {},
    result = "coal"
  }
  })


Re: Hide recipes only in player menu

Posted: Fri Jun 28, 2019 4:58 am
by Arch666Angel
The "e" player crafting menu will always show all recipes, even if they are not craft able by hand. You can hide recipes as mentioned above, but they cannot be selected then in an assembler as well. So in general: no. In special cases there are workarounds.