diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 6ddd7c136a..0941bd7af0 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -122,6 +122,8 @@ GLOBAL_LIST_INIT(metal_recipes, list ( \ new/datum/stack_recipe("iron door", /obj/structure/mineral_door/iron, 20, one_per_turf = TRUE, on_floor = TRUE), \ new/datum/stack_recipe("pestle", /obj/item/pestle, 1, time = 50), \ new/datum/stack_recipe("floodlight frame", /obj/structure/floodlight_frame, 5, one_per_turf = TRUE, on_floor = TRUE), \ + null, \ + new/datum/stack_recipe("tiny fan", /obj/structure/fans/tiny, 2, one_per_turf = TRUE, on_floor = TRUE), \ )) /obj/item/stack/sheet/metal diff --git a/sandcode/code/modules/crafting/recipes/recipes_misc.dm b/sandcode/code/modules/crafting/recipes/recipes_misc.dm index 348eb64afc..7cb2c93311 100644 --- a/sandcode/code/modules/crafting/recipes/recipes_misc.dm +++ b/sandcode/code/modules/crafting/recipes/recipes_misc.dm @@ -2,15 +2,6 @@ //Unsorted// //////////// -/datum/crafting_recipe/tiny_fan - name = "Tiny Fan" - reqs = list(/obj/item/stack/sheet/metal = 2) - result = /obj/structure/fans/tiny - tools = list(TOOL_SCREWDRIVER) - subcategory = CAT_MISCELLANEOUS - category = CAT_MISC - - /datum/crafting_recipe/shower name = "Shower" reqs = list(/obj/item/stack/sheet/metal = 3)