mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-28 18:11:16 +00:00
## About The Pull Request Rewrite `/datum/generecipe` to have two variables, `input_one` and `input_two` that hold the type path of the ingredients for the recipe, instead of it being a semicolon-separated string. ## Why It's Good For The Game Better code, will catch invalid type paths in recipes at compile-time. ## Changelog No player-facing changes
8 lines
445 B
Plaintext
8 lines
445 B
Plaintext
//faster than having to constantly loop for them
|
|
GLOBAL_LIST_EMPTY_TYPED(all_mutations, /datum/mutation/human) //type = initialized mutation
|
|
GLOBAL_LIST_EMPTY(full_sequences) //type = correct sequence
|
|
GLOBAL_LIST_EMPTY(bad_mutations) //bad initialized mutations
|
|
GLOBAL_LIST_EMPTY(good_mutations) //good initialized mutations
|
|
GLOBAL_LIST_EMPTY(not_good_mutations) //neutral initialized mutations
|
|
GLOBAL_LIST_EMPTY(alias_mutations) //alias = type
|