Files
Fluffy 7265630dde Turn more unmanaged global vars into GLOB (#20446)
Turned a ton of unmanaged globals into managed globals.
Refactored some UT output.
Removed some unused things, including vars.
Added a test to ensure people don't keep adding new unmanaged vars.
2025-02-17 23:34:02 +00:00

16 lines
389 B
Plaintext

GLOBAL_LIST_INIT_TYPED(wax_recipes, /datum/stack_recipe, list(
new /datum/stack_recipe("candle", /obj/item/flame/candle)
))
/obj/item/stack/wax
name = "wax"
singular_name = "wax piece"
desc = "Soft substance produced by botany. Used to make candles."
icon = 'icons/obj/beekeeping.dmi'
icon_state = "wax"
max_amount = 50
/obj/item/stack/wax/New()
..()
recipes = GLOB.wax_recipes