Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
meemofcourse committed Oct 15, 2023
1 parent 69102a6 commit dd6681c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 0 additions & 2 deletions code/game/objects/items/storage/belt.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
4 changes: 2 additions & 2 deletions code/modules/clothing/outfits/ert/minutemen_ert.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions code/modules/clothing/outfits/ert/solgov_ert.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 6 additions & 2 deletions code/modules/clothing/outfits/ert/syndicate_ert.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)

Check failure on line 94 in code/modules/clothing/outfits/ert/syndicate_ert.dm

View workflow job for this annotation

GitHub Actions / Run Linters

got '{', expected one of: operator, field access, as, 'in', ';'

id_role = "Medical Technician"

/datum/outfit/centcom/ert/syndicate/cybersun/medic/leader
Expand Down

0 comments on commit dd6681c

Please sign in to comment.