or added the code in the TIMSABA/prototypes/recipe-category.lua
local data_recipe_category = data.raw["recipe-category"]
if not data_recipe_category[hand_crafting] then
data:extend({{type = recipe_category, name = hand_crafting}})
for _, character in pairs(data.raw["character"]) do
if character.crafting_categories then
local has_category = false
for _, cat in ipairs(character.crafting_categories) do
if cat == hand_crafting then
has_category = true
break
end
end
if not has_category then
table.insert(character.crafting_categories, hand_crafting)
end
end
end
end