From c22304ddcbb1ae4e87009aec15cc8ccd46278adb Mon Sep 17 00:00:00 2001 From: datlo Date: Mon, 5 Nov 2018 08:15:24 +0000 Subject: [PATCH] Added to hardsuit derp'd --- code/datums/uplink_item.dm | 2 +- code/game/objects/items/weapons/storage/uplink_kits.dm | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index 3486ce4746e..4bdb33b8a45 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -1056,7 +1056,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) desc = "The feared suit of a syndicate nuclear agent. Features armor and a combat mode \ for faster movement on station. Toggling the suit in and out of \ combat mode will allow you all the mobility of a loose fitting uniform without sacrificing armoring. \ - Additionally the suit is collapsible, making it small enough to fit within a backpack. \ + Additionally the suit is collapsible, making it small enough to fit within a backpack. Comes packaged with internals. \ Nanotrasen crew who spot these suits are known to panic." reference = "BRHS" item = /obj/item/storage/box/syndie_kit/hardsuit diff --git a/code/game/objects/items/weapons/storage/uplink_kits.dm b/code/game/objects/items/weapons/storage/uplink_kits.dm index 4efc8bb3fb2..74da310c382 100644 --- a/code/game/objects/items/weapons/storage/uplink_kits.dm +++ b/code/game/objects/items/weapons/storage/uplink_kits.dm @@ -100,13 +100,15 @@ /obj/item/storage/box/syndie_kit/hardsuit name = "Boxed Blood Red Suit and Helmet" - can_hold = list(/obj/item/clothing/suit/space/hardsuit/syndi, /obj/item/clothing/head/helmet/space/hardsuit/syndi) + can_hold = list(/obj/item/clothing/suit/space/hardsuit/syndi, /obj/item/clothing/head/helmet/space/hardsuit/syndi, /obj/item/tank/emergency_oxygen/syndi, /obj/item/clothing/mask/gas/syndicate) max_w_class = WEIGHT_CLASS_NORMAL /obj/item/storage/box/syndie_kit/hardsuit/New() ..() new /obj/item/clothing/suit/space/hardsuit/syndi(src) new /obj/item/clothing/head/helmet/space/hardsuit/syndi(src) + new /obj/item/clothing/mask/gas/syndicate(src) + new /obj/item/tank/emergency_oxygen/syndi(src) return /obj/item/storage/box/syndie_kit/elite_hardsuit