From d89df7d2a2903ccd9a6ca86b1adc158d9c306ebc Mon Sep 17 00:00:00 2001 From: LT3 <83487515+lessthnthree@users.noreply.github.com> Date: Sat, 20 Dec 2025 19:16:33 -0800 Subject: [PATCH] Adds holiday mail to Christmas season (#94558) ## About The Pull Request - Now that the Christmas holiday is extended to ~2 weeks, re-enables mail for the duration of the holiday. - Adds some Christmas specific goodies to add to the mail pool for the duration. ## Why It's Good For The Game 2 weeks without any mail is a rather long time. Also what about all that Christmas space cash you receive from relatives who you never visit? ## Changelog :cl: LT3 add: Christmas season now includes Christmas themed goodies in the mail /:cl: --- code/modules/holiday/holidays.dm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/code/modules/holiday/holidays.dm b/code/modules/holiday/holidays.dm index 556c099ecc7..277e689656b 100644 --- a/code/modules/holiday/holidays.dm +++ b/code/modules/holiday/holidays.dm @@ -847,7 +847,13 @@ GLOBAL_LIST_INIT(holiday_mail, list()) begin_month = DECEMBER end_day = 27 holiday_hat = /obj/item/clothing/head/costume/santa - no_mail_holiday = TRUE + holiday_mail = list( + /obj/item/clothing/head/beanie/christmas, + /obj/item/clothing/neck/scarf/christmas, + /obj/item/food/cookie/sugar, + /obj/item/gift/anything, + /obj/item/toy/xmas_cracker, + ) holiday_colors = list( COLOR_CHRISTMAS_GREEN, COLOR_CHRISTMAS_RED,