From 989b3494a331f5c1f31b4014a2a250bca8a7efd0 Mon Sep 17 00:00:00 2001 From: KateAnbolho <141269115+KateAnbolho@users.noreply.github.com> Date: Sun, 3 May 2026 09:32:58 -0700 Subject: [PATCH] Re-adds the sleepy time bundle (#5517) ## About The Pull Request Re-adds the sleepy time bundle, for all your cozy operator needs. ## Why It's Good For The Game Someone asked, it's kinda a cute item. TG removed this for essentially no reason beyond "WE HATE FUN" ## Proof Of Testing image ## Changelog :cl: add: the sleepy time bundle to uplinks /:cl: --- .../code/modules/uplink/uplink_items/bundle.dm | 8 ++++++++ .../code/modules/uplink/uplink_items/uplinkitems.dm | 7 +++++++ 2 files changed, 15 insertions(+) diff --git a/modular_zubbers/code/modules/uplink/uplink_items/bundle.dm b/modular_zubbers/code/modules/uplink/uplink_items/bundle.dm index 436347ab12a..6e2ec1fc5ca 100644 --- a/modular_zubbers/code/modules/uplink/uplink_items/bundle.dm +++ b/modular_zubbers/code/modules/uplink/uplink_items/bundle.dm @@ -15,3 +15,11 @@ item = /obj/item/storage/box/syndibunny cost = 8 +/datum/uplink_item/bundles_tc/tactical_naptime + name = "Sleepy Time Pajama Bundle" + desc = "Even soldiers need to get a good nights rest. Comes with blood-red pajamas, a blankie, a hot mug of cocoa and a fuzzy friend." + item = /obj/item/storage/box/syndie_kit/sleepytime + cost = 1 + uplink_item_flags = NONE + + diff --git a/modular_zubbers/code/modules/uplink/uplink_items/uplinkitems.dm b/modular_zubbers/code/modules/uplink/uplink_items/uplinkitems.dm index 09d560faddd..8e4310687d2 100644 --- a/modular_zubbers/code/modules/uplink/uplink_items/uplinkitems.dm +++ b/modular_zubbers/code/modules/uplink/uplink_items/uplinkitems.dm @@ -48,3 +48,10 @@ ) generate_items_inside(items_inside,src) +/obj/item/storage/box/syndie_kit/sleepytime +/obj/item/storage/box/syndie_kit/sleepytime/PopulateContents() + new /obj/item/clothing/under/syndicate/bloodred/sleepytime(src) + new /obj/item/reagent_containers/cup/glass/mug/coco(src) + new /obj/item/toy/plush/carpplushie(src) + new /obj/item/bedsheet/syndie(src) +