Skip to content

Commit

Permalink
fixes wood recipe gen (#6047)
Browse files Browse the repository at this point in the history
i don't know how ci didn't catch that, is it because i'm lazy
initing????? shouldn't be right???
  • Loading branch information
silicons authored Oct 4, 2023
1 parent 0bcbed3 commit 2b85090
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions code/modules/materials/definitions/organic/wood/plank.dm
Original file line number Diff line number Diff line change
Expand Up @@ -138,23 +138,23 @@
product = /obj/item/clipboard,
cost = 1,
)
. += create_stack_recipe_datum(
recipes += create_stack_recipe_datum(
name = "wood floor tile",
product = /obj/item/stack/tile/wood,
cost = 1,
amount = 4,
)
. += create_stack_recipe_datum(
recipes += create_stack_recipe_datum(
name = "wood roofing tile",
product = /obj/item/stack/tile/roofing/wood,
cost = 3,
amount = 4,
)
. += create_stack_recipe_datum(category = "fences", name = "fence", product = /obj/structure/fence/wooden, cost = 3)
. += create_stack_recipe_datum(category = "fences", name = "fence end", product = /obj/structure/fence/wooden/end, cost = 3)
. += create_stack_recipe_datum(category = "fences", name = "fencepost", product = /obj/structure/fence/wooden/post, cost = 3)
. += create_stack_recipe_datum(category = "fences", name = "fence corner", product = /obj/structure/fence/wooden/corner, cost = 3)
. += create_stack_recipe_datum(category = "fences", name = "gate", product = /obj/structure/fence/door/wooden, cost = 3)
recipes += create_stack_recipe_datum(category = "fences", name = "fence", product = /obj/structure/fence/wooden, cost = 3)
recipes += create_stack_recipe_datum(category = "fences", name = "fence end", product = /obj/structure/fence/wooden/end, cost = 3)
recipes += create_stack_recipe_datum(category = "fences", name = "fencepost", product = /obj/structure/fence/wooden/post, cost = 3)
recipes += create_stack_recipe_datum(category = "fences", name = "fence corner", product = /obj/structure/fence/wooden/corner, cost = 3)
recipes += create_stack_recipe_datum(category = "fences", name = "gate", product = /obj/structure/fence/door/wooden, cost = 3)
return recipes

/datum/material/wood_plank/holographic
Expand Down

0 comments on commit 2b85090

Please sign in to comment.