From 1698d93e5c93df41de7353a304fbfa6e60ceabb9 Mon Sep 17 00:00:00 2001 From: Fox McCloud Date: Tue, 3 Sep 2019 18:09:47 -0400 Subject: [PATCH] Snowman Crafting --- code/modules/holiday/christmas.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/holiday/christmas.dm b/code/modules/holiday/christmas.dm index ae8a1379c7f..047c8ce069e 100644 --- a/code/modules/holiday/christmas.dm +++ b/code/modules/holiday/christmas.dm @@ -6,7 +6,10 @@ new /obj/item/a_gift(T) for(var/mob/living/simple_animal/pet/corgi/Ian/Ian in GLOB.mob_list) Ian.place_on_head(new /obj/item/clothing/head/helmet/space/santahat(Ian)) -//The following spawn is necessary as both the timer and the shuttle systems initialise after the events system does, so we can't add stuff to the shuttle system as it doesn't exist yet and we can't use a timer + for(var/datum/crafting_recipe/snowman/S in GLOB.crafting_recipes) + S.always_availible = TRUE + break + //The following spawn is necessary as both the timer and the shuttle systems initialise after the events system does, so we can't add stuff to the shuttle system as it doesn't exist yet and we can't use a timer spawn(60 SECONDS) var/datum/supply_packs/xmas = SSshuttle.supply_packs["[/datum/supply_packs/misc/snow_machine]"] xmas.special_enabled = TRUE