From 8576aa80ff2df94e0aa9d08bc10e5a18dce13c4b Mon Sep 17 00:00:00 2001 From: Citinited Date: Wed, 30 Oct 2019 21:58:18 +0000 Subject: [PATCH] Snow crate is available for purchase on both consoles, not just the supply console --- code/modules/holiday/christmas.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/holiday/christmas.dm b/code/modules/holiday/christmas.dm index 37a482231c2..ffbfa412e53 100644 --- a/code/modules/holiday/christmas.dm +++ b/code/modules/holiday/christmas.dm @@ -11,8 +11,8 @@ 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 + var/datum/supply_packs/misc/snow_machine/xmas = SSshuttle.supply_packs["[/datum/supply_packs/misc/snow_machine]"] + xmas.special = FALSE /datum/holiday/xmas/handle_event() spawnTree()