From dd6681cc7ca284fa9972acfd8aea8ce808c220d4 Mon Sep 17 00:00:00 2001 From: meemofcourse <75212565+meemofcourse@users.noreply.github.com> Date: Sun, 15 Oct 2023 16:57:55 -0300 Subject: [PATCH] fix tests --- code/game/objects/items/storage/belt.dm | 2 -- code/modules/clothing/outfits/ert/minutemen_ert.dm | 4 ++-- code/modules/clothing/outfits/ert/solgov_ert.dm | 2 ++ code/modules/clothing/outfits/ert/syndicate_ert.dm | 8 ++++++-- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm index ec83a4277064..41e54583046a 100644 --- a/code/game/objects/items/storage/belt.dm +++ b/code/game/objects/items/storage/belt.dm @@ -439,8 +439,6 @@ for(var/i in 1 to 7) new /obj/item/ammo_box/magazine/smgm45(src) - - /obj/item/storage/belt/military/minutemen name = "minutemen tactical webbing" desc = "A set of tactical webbing worn by the Colonial Minutemen of the frontier." diff --git a/code/modules/clothing/outfits/ert/minutemen_ert.dm b/code/modules/clothing/outfits/ert/minutemen_ert.dm index 867062554f0a..5cbb08801780 100644 --- a/code/modules/clothing/outfits/ert/minutemen_ert.dm +++ b/code/modules/clothing/outfits/ert/minutemen_ert.dm @@ -37,9 +37,7 @@ l_hand = /obj/item/reagent_containers/hypospray/medipen/stimpack backpack_contents = list( - /obj/item/ammo_box/c9mm = 2, /obj/item/ammo_box/magazine/smgm9mm = 5, - /obj/item/grenade/c4 = 2, /obj/item/flashlight/seclite = 1, /obj/item/flashlight/flare = 2 ) @@ -75,6 +73,8 @@ r_pocket = /obj/item/ammo_box/magazine/smgm9mm/rubber l_pocket = /obj/item/ammo_box/magazine/smgm9mm/rubber + backpack_contents = list(/obj/item/ammo_box/magazine/smgm9mm/rubber=2) + id_role = "Minutemen" /datum/outfit/centcom/ert/minutemen/riot/leader diff --git a/code/modules/clothing/outfits/ert/solgov_ert.dm b/code/modules/clothing/outfits/ert/solgov_ert.dm index 88333c22bbca..3bcd75c2bbfb 100644 --- a/code/modules/clothing/outfits/ert/solgov_ert.dm +++ b/code/modules/clothing/outfits/ert/solgov_ert.dm @@ -24,6 +24,8 @@ head = /obj/item/clothing/head/solgov gloves = /obj/item/clothing/gloves/color/white shoes = /obj/item/clothing/shoes/laceup + suit = null + suit_store = null mask = null glasses = null diff --git a/code/modules/clothing/outfits/ert/syndicate_ert.dm b/code/modules/clothing/outfits/ert/syndicate_ert.dm index ecc265087a45..c9d6d2527630 100644 --- a/code/modules/clothing/outfits/ert/syndicate_ert.dm +++ b/code/modules/clothing/outfits/ert/syndicate_ert.dm @@ -51,7 +51,7 @@ head = null uniform = /obj/item/clothing/under/syndicate/combat - belt = /obj/item/tank/internals/oxygen + belt = /obj/item/storage/belt/military/c20r suit = /obj/item/clothing/suit/space/hardsuit/syndi/cybersun suit_store = /obj/item/gun/ballistic/automatic/smg/c20r ears = /obj/item/radio/headset/syndicate/alt @@ -84,11 +84,15 @@ head = /obj/item/clothing/head/soft/cybersun belt = /obj/item/storage/belt/medical/webbing/paramedic back = /obj/item/storage/backpack/ert/medical - backpack_contents = list(/obj/item/storage/firstaid/tactical=1, /obj/item/holosign_creator/medical=1, /obj/item/autosurgeon/cmo=1, /obj/item/radio=1) l_pocket = /obj/item/kitchen/knife/combat/survival r_pocket = /obj/item/pinpointer/crew accessory = /obj/item/clothing/accessory/holster/marine +backpack_contents = list(/obj/item/storage/firstaid/tactical=1, + /obj/item/holosign_creator/medical=1, + /obj/item/autosurgeon/cmo=1, + /obj/item/radio=1) + id_role = "Medical Technician" /datum/outfit/centcom/ert/syndicate/cybersun/medic/leader