Skip to content

Commit

Permalink
Makes this list a little more downstream friendly (aka trailing comma…
Browse files Browse the repository at this point in the history
… pr) (#83028)

## About The Pull Request

That's all. Just makes this easier to add onto with less diffs involved.

## Changelog

Nothing worth mentioning

---------

Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com>
  • Loading branch information
vinylspiders and MrMelbert committed May 4, 2024
1 parent 2b2d12b commit 386715e
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions code/game/objects/items/stacks/sheets/sheet_types.dm
Original file line number Diff line number Diff line change
Expand Up @@ -774,10 +774,14 @@ GLOBAL_LIST_INIT(bronze_recipes, list ( \

// As bone and sinew have just a little too many recipes for this, we'll just split them up.
// Sinew slapcrafting will mostly-sinew recipes, and bones will have mostly-bones recipes.
var/static/list/slapcraft_recipe_list = list(\
/datum/crafting_recipe/bonedagger, /datum/crafting_recipe/bonespear, /datum/crafting_recipe/boneaxe,\
/datum/crafting_recipe/bonearmor, /datum/crafting_recipe/skullhelm, /datum/crafting_recipe/bracers
)
var/static/list/slapcraft_recipe_list = list(
/datum/crafting_recipe/bonearmor,
/datum/crafting_recipe/boneaxe,
/datum/crafting_recipe/bonedagger,
/datum/crafting_recipe/bonespear,
/datum/crafting_recipe/bracers,
/datum/crafting_recipe/skullhelm,
)

AddComponent(
/datum/component/slapcrafting,\
Expand Down

0 comments on commit 386715e

Please sign in to comment.