diff --git a/code/datums/supplypacks/costumes.dm b/code/datums/supplypacks/costumes.dm index e9a1365b7b..321c0fde0e 100644 --- a/code/datums/supplypacks/costumes.dm +++ b/code/datums/supplypacks/costumes.dm @@ -156,7 +156,7 @@ datum/supply_packs/costumes/witch /obj/item/clothing/under/wedding/bride_blue, /obj/item/clothing/under/wedding/bride_red, /obj/item/clothing/under/wedding/bride_white, - /obj/item/clothing/under/dress/sundress, + /obj/item/clothing/under/sundress, /obj/item/clothing/under/dress/dress_green, /obj/item/clothing/under/dress/dress_pink, /obj/item/clothing/under/dress/dress_orange, diff --git a/code/game/objects/effects/landmarks.dm b/code/game/objects/effects/landmarks.dm index b5c0df7127..3ecb7c7b2d 100644 --- a/code/game/objects/effects/landmarks.dm +++ b/code/game/objects/effects/landmarks.dm @@ -226,7 +226,7 @@ delete_me = 1 /obj/effect/landmark/costume/cutewitch/New() - new /obj/item/clothing/under/dress/sundress(src.loc) + new /obj/item/clothing/under/sundress(src.loc) new /obj/item/clothing/head/witchwig(src.loc) new /obj/item/weapon/staff/broom(src.loc) delete_me = 1 diff --git a/code/game/objects/structures/crates_lockers/closets/job_closets.dm b/code/game/objects/structures/crates_lockers/closets/job_closets.dm index a4a1f8d97a..c93f68a82a 100644 --- a/code/game/objects/structures/crates_lockers/closets/job_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/job_closets.dm @@ -45,7 +45,7 @@ /obj/structure/closet/chefcloset/New() ..() - new /obj/item/clothing/under/dress/sundress(src) + new /obj/item/clothing/under/sundress(src) new /obj/item/clothing/under/waiter(src) new /obj/item/clothing/under/waiter(src) new /obj/item/device/radio/headset/headset_service(src) diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform.dm b/code/modules/client/preference_setup/loadout/loadout_uniform.dm index 0b64950f05..ccc5214b55 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm @@ -273,11 +273,11 @@ /datum/gear/uniform/sundress display_name = "sundress" - path = /obj/item/clothing/under/dress/sundress + path = /obj/item/clothing/under/sundress /datum/gear/uniform/sundress/white display_name = "sundress, white" - path = /obj/item/clothing/under/dress/sundress/white + path = /obj/item/clothing/under/sundress_white /datum/gear/uniform/dress_fire display_name = "flame dress" @@ -446,10 +446,10 @@ display_name = "jumpsuit, hephaestus" path = /obj/item/clothing/under/hephaestus -/datum/gear/uniform/yoga +/datum/gear/uniform/yogapants display_name = "yoga pants" - path = /obj/item/clothing/under/pants/yoga + path = /obj/item/clothing/under/pants/yogapants -/datum/gear/uniform/yoga/New() +/datum/gear/uniform/yogapants/New() ..() gear_tweaks = list(gear_tweak_free_color_choice) \ No newline at end of file diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 1a67a0674c..3783a5c208 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -525,10 +525,6 @@ var/rolled_down = -1 //0 = unrolled, 1 = rolled, -1 = cannot be toggled var/rolled_sleeves = -1 //0 = unrolled, 1 = rolled, -1 = cannot be toggled sprite_sheets = list( - "Human" = 'icons/mob/uniforms/uniform.dmi', - "Skrell" = 'icons/mob/species/skrell/uniforms/uniform.dmi', - "Tajaran" = 'icons/mob/species/tajaran/uniforms/uniform.dmi', - "Unathi" = 'icons/mob/species/unathi/uniforms/uniform.dmi', "Teshari" = 'icons/mob/species/seromi/uniform.dmi', "Vox" = 'icons/mob/species/vox/uniform.dmi' ) diff --git a/code/modules/clothing/under/color.dm b/code/modules/clothing/under/color.dm index cabf17522b..7452b35aab 100644 --- a/code/modules/clothing/under/color.dm +++ b/code/modules/clothing/under/color.dm @@ -1,10 +1,3 @@ -/obj/item/clothing/under/color - sprite_sheets = list( - "Human" = 'icons/mob/uniforms/color.dmi', - "Skrell" = 'icons/mob/species/skrell/uniforms/color.dmi', - "Tajaran" = 'icons/mob/species/tajaran/uniforms/color.dmi', - "Unathi" = 'icons/mob/species/unathi/uniforms/color.dmi' - ) /obj/item/clothing/under/color/black name = "black jumpsuit" icon_state = "black" diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index 90de766ba0..96c47d054a 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -255,12 +255,6 @@ */ /obj/item/clothing/under/dress body_parts_covered = UPPER_TORSO|LOWER_TORSO - sprite_sheets = list( - "Human" = 'icons/mob/uniforms/dresses.dmi', - "Skrell" = 'icons/mob/species/skrell/uniforms/dresses.dmi', - "Tajaran" = 'icons/mob/species/tajaran/uniforms/dresses.dmi', - "Unathi" = 'icons/mob/species/unathi/uniforms/dresses.dmi' - ) /obj/item/clothing/under/dress/blacktango name = "black tango dress" @@ -350,15 +344,8 @@ /* * wedding stuff */ -/obj/item/clothing/under/wedding +/obj/item/clothing/under/wedding/ body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS - sprite_sheets = list( - "Human" = 'icons/mob/uniforms/dresses.dmi', - "Skrell" = 'icons/mob/species/skrell/uniforms/dresses.dmi', - "Tajaran" = 'icons/mob/species/tajaran/uniforms/dresses.dmi', - "Unathi" = 'icons/mob/species/unathi/uniforms/dresses.dmi' - ) - /obj/item/clothing/under/wedding/bride_orange name = "orange wedding dress" @@ -391,13 +378,13 @@ flags_inv = HIDESHOES body_parts_covered = UPPER_TORSO|LOWER_TORSO -/obj/item/clothing/under/dress/sundress +/obj/item/clothing/under/sundress name = "sundress" desc = "Makes you want to frolic in a field of daisies." icon_state = "sundress" body_parts_covered = UPPER_TORSO|LOWER_TORSO -/obj/item/clothing/under/dress/sundress/white +/obj/item/clothing/under/sundress_white name = "white sundress" desc = "A white sundress decorated with purple lilies." icon_state = "sundress_white" @@ -472,12 +459,6 @@ /obj/item/clothing/under/cheongsam name = "white cheongsam" desc = "It is a white cheongsam dress." - sprite_sheets = list( - "Human" = 'icons/mob/uniforms/dresses.dmi', - "Skrell" = 'icons/mob/species/skrell/uniforms/dresses.dmi', - "Tajaran" = 'icons/mob/species/tajaran/uniforms/dresses.dmi', - "Unathi" = 'icons/mob/species/unathi/uniforms/dresses.dmi' - ) icon_state = "mai_yang" body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS @@ -505,12 +486,6 @@ /obj/item/clothing/under/croptop name = "crop top" desc = "A shirt that has had the top cropped. This one is NT sponsored." - sprite_sheets = list( - "Human" = 'icons/mob/uniforms/dresses.dmi', - "Skrell" = 'icons/mob/species/skrell/uniforms/dresses.dmi', - "Tajaran" = 'icons/mob/species/tajaran/uniforms/dresses.dmi', - "Unathi" = 'icons/mob/species/unathi/uniforms/dresses.dmi' - ) icon_state = "croptop" item_state_slots = list(slot_r_hand_str = "grey", slot_l_hand_str = "grey") diff --git a/code/modules/clothing/under/pants.dm b/code/modules/clothing/under/pants.dm index f35972c89a..322115cc0b 100644 --- a/code/modules/clothing/under/pants.dm +++ b/code/modules/clothing/under/pants.dm @@ -2,12 +2,6 @@ /obj/item/clothing/under/pants name = "jeans" desc = "A nondescript pair of tough blue jeans." - sprite_sheets = list( - "Human" = 'icons/mob/uniforms/pants.dmi', - "Skrell" = 'icons/mob/species/skrell/uniforms/pants.dmi', - "Tajaran" = 'icons/mob/species/tajaran/uniforms/pants.dmi', - "Unathi" = 'icons/mob/species/unathi/uniforms/pants.dmi' - ) icon_state = "jeans" gender = PLURAL body_parts_covered = LOWER_TORSO|LEGS @@ -123,10 +117,10 @@ desc = "A pair of sexy, tight black leather chaps." icon_state = "chapsbl" -/obj/item/clothing/under/pants/yoga +/obj/item/clothing/under/pants/yogapants name = "yoga pants" desc = "A pair of tight-fitting yoga pants for those lazy days." - icon_state = "yoga" + icon_state = "yogapants" /* * Baggy Pants diff --git a/code/modules/clothing/under/shorts.dm b/code/modules/clothing/under/shorts.dm index b84cb1874c..81b5b2fe24 100644 --- a/code/modules/clothing/under/shorts.dm +++ b/code/modules/clothing/under/shorts.dm @@ -2,12 +2,6 @@ /obj/item/clothing/under/shorts name = "athletic shorts" desc = "95% Polyester, 5% Spandex!" - sprite_sheets = list( - "Human" = 'icons/mob/uniforms/pants.dmi', - "Skrell" = 'icons/mob/species/skrell/uniforms/pants.dmi', - "Tajaran" = 'icons/mob/species/tajaran/uniforms/pants.dmi', - "Unathi" = 'icons/mob/species/unathi/uniforms/pants.dmi' - ) gender = PLURAL body_parts_covered = LOWER_TORSO @@ -97,17 +91,16 @@ name = "khaki short shorts" icon_state = "khaki_shorts_f" +/obj/item/clothing/under/shorts/loincloth + name = "loincloth" + desc = "A piece of cloth wrapped around the waist." + icon_state = "loincloth" + //Argh, skirts be below this line -> ------------------------------ /obj/item/clothing/under/skirt name = "short black skirt" desc = "A skirt that is a shiny black." - sprite_sheets = list( - "Human" = 'icons/mob/uniforms/dresses.dmi', - "Skrell" = 'icons/mob/species/skrell/uniforms/dresses.dmi', - "Tajaran" = 'icons/mob/species/tajaran/uniforms/dresses.dmi', - "Unathi" = 'icons/mob/species/unathi/uniforms/dresses.dmi' - ) icon_state = "skirt_short_black" body_parts_covered = LOWER_TORSO rolled_sleeves = -1 @@ -137,11 +130,6 @@ desc = "A skirt that is swept to one side." icon_state = "skirt_swept" -/obj/item/clothing/under/skirt/loincloth - name = "loincloth" - desc = "A piece of cloth wrapped around the waist." - icon_state = "loincloth" - /obj/item/clothing/under/skirt/outfit name = "black skirt" desc = "A black skirt, very fancy!" @@ -166,8 +154,6 @@ icon_state = "plaid_purple" item_state_slots = list(slot_r_hand_str = "purple", slot_l_hand_str = "purple") -//Job skirts - /obj/item/clothing/under/rank/cargo/skirt name = "quartermaster's jumpskirt" desc = "It's a jumpskirt worn by the quartermaster. It's specially designed to prevent back injuries caused by pushing paper." diff --git a/code/modules/clothing/under/solgov.dm b/code/modules/clothing/under/solgov.dm index ea9165364d..eb3ed28a85 100644 --- a/code/modules/clothing/under/solgov.dm +++ b/code/modules/clothing/under/solgov.dm @@ -4,12 +4,6 @@ /obj/item/clothing/under/pt name = "pt uniform" desc = "Shorts! Shirt! Miami! Sexy!" - sprite_sheets = list( - "Human" = 'icons/mob/uniforms/military.dmi', - "Skrell" = 'icons/mob/species/skrell/uniforms/military.dmi', - "Tajaran" = 'icons/mob/species/tajaran/uniforms/military.dmi', - "Unathi" = 'icons/mob/species/unathi/uniforms/military.dmi' - ) icon_state = "miami" worn_state = "miami" armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) @@ -40,12 +34,6 @@ /obj/item/clothing/under/utility name = "utility uniform" desc = "A comfortable turtleneck and black utility trousers." - sprite_sheets = list( - "Human" = 'icons/mob/uniforms/military.dmi', - "Skrell" = 'icons/mob/species/skrell/uniforms/military.dmi', - "Tajaran" = 'icons/mob/species/tajaran/uniforms/military.dmi', - "Unathi" = 'icons/mob/species/unathi/uniforms/military.dmi' - ) icon_state = "blackutility" worn_state = "blackutility" armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) @@ -106,6 +94,7 @@ icon_state = "blackutility_com" worn_state = "blackutility_com" + /obj/item/clothing/under/utility/fleet name = "fleet coveralls" desc = "The utility uniform of the SCG Fleet, made from an insulated material." @@ -144,6 +133,7 @@ icon_state = "navyutility_com" worn_state = "navyutility_com" + /obj/item/clothing/under/utility/marine name = "marine fatigues" desc = "The utility uniform of the SCG Marine Corps, made from durable material." @@ -198,12 +188,6 @@ /obj/item/clothing/under/service name = "service uniform" desc = "A service uniform of some kind." - sprite_sheets = list( - "Human" = 'icons/mob/uniforms/military.dmi', - "Skrell" = 'icons/mob/species/skrell/uniforms/military.dmi', - "Tajaran" = 'icons/mob/species/tajaran/uniforms/military.dmi', - "Unathi" = 'icons/mob/species/unathi/uniforms/military.dmi' - ) icon_state = "whiteservice" worn_state = "whiteservice" armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) @@ -228,39 +212,33 @@ worn_state = "greenservice_com" //Dress -/obj/item/clothing/under/mildress +/obj/item/clothing/under/dress/plain name = "dress uniform" desc = "A dress uniform of some kind." - sprite_sheets = list( - "Human" = 'icons/mob/uniforms/military.dmi', - "Skrell" = 'icons/mob/species/skrell/uniforms/military.dmi', - "Tajaran" = 'icons/mob/species/tajaran/uniforms/military.dmi', - "Unathi" = 'icons/mob/species/unathi/uniforms/military.dmi' - ) icon_state = "greydress" worn_state = "greydress" armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) siemens_coefficient = 0.9 -/obj/item/clothing/under/mildress/expeditionary +/obj/item/clothing/under/dress/expeditionary name = "\improper SifGuard dress uniform" desc = "The dress uniform of the Sif Homeguard Corps in silver trim." icon_state = "greydress" worn_state = "greydress" -/obj/item/clothing/under/mildress/expeditionary/command +/obj/item/clothing/under/dress/expeditionary/command name = "\improper SifGuard command dress uniform" desc = "The dress uniform of the Sif Homeguard Corps in gold trim." icon_state = "greydress_com" worn_state = "greydress_com" -/obj/item/clothing/under/mildress/marine +/obj/item/clothing/under/dress/marine name = "marine dress uniform" desc = "The dress uniform of the SCG Marine Corps, class given form." icon_state = "blackdress" worn_state = "blackdress" -/obj/item/clothing/under/mildress/marine/command +/obj/item/clothing/under/dress/marine/command name = "marine command dress uniform" desc = "The dress uniform of the SCG Marine Corps, even classier in gold." icon_state = "blackdress_com" diff --git a/icons/mob/species/diona/uniforms/color.dmi b/icons/mob/species/diona/uniforms/color.dmi deleted file mode 100644 index 9f282d8d7d..0000000000 Binary files a/icons/mob/species/diona/uniforms/color.dmi and /dev/null differ diff --git a/icons/mob/species/diona/uniforms/dresses.dmi b/icons/mob/species/diona/uniforms/dresses.dmi deleted file mode 100644 index 0c49112a12..0000000000 Binary files a/icons/mob/species/diona/uniforms/dresses.dmi and /dev/null differ diff --git a/icons/mob/species/diona/uniforms/military.dmi b/icons/mob/species/diona/uniforms/military.dmi deleted file mode 100644 index a11c0618bf..0000000000 Binary files a/icons/mob/species/diona/uniforms/military.dmi and /dev/null differ diff --git a/icons/mob/species/diona/uniforms/pants.dmi b/icons/mob/species/diona/uniforms/pants.dmi deleted file mode 100644 index 1021ab4d6a..0000000000 Binary files a/icons/mob/species/diona/uniforms/pants.dmi and /dev/null differ diff --git a/icons/mob/species/diona/uniforms/uniform.dmi b/icons/mob/species/diona/uniforms/uniform.dmi deleted file mode 100644 index c683e886fe..0000000000 Binary files a/icons/mob/species/diona/uniforms/uniform.dmi and /dev/null differ diff --git a/icons/mob/species/diona/uniforms/uniform_fat.dmi b/icons/mob/species/diona/uniforms/uniform_fat.dmi deleted file mode 100644 index c887239f1f..0000000000 Binary files a/icons/mob/species/diona/uniforms/uniform_fat.dmi and /dev/null differ diff --git a/icons/mob/species/skrell/uniforms/color.dmi b/icons/mob/species/skrell/uniforms/color.dmi deleted file mode 100644 index 9f282d8d7d..0000000000 Binary files a/icons/mob/species/skrell/uniforms/color.dmi and /dev/null differ diff --git a/icons/mob/species/skrell/uniforms/dresses.dmi b/icons/mob/species/skrell/uniforms/dresses.dmi deleted file mode 100644 index 0c49112a12..0000000000 Binary files a/icons/mob/species/skrell/uniforms/dresses.dmi and /dev/null differ diff --git a/icons/mob/species/skrell/uniforms/military.dmi b/icons/mob/species/skrell/uniforms/military.dmi deleted file mode 100644 index a11c0618bf..0000000000 Binary files a/icons/mob/species/skrell/uniforms/military.dmi and /dev/null differ diff --git a/icons/mob/species/skrell/uniforms/pants.dmi b/icons/mob/species/skrell/uniforms/pants.dmi deleted file mode 100644 index 9de1e49925..0000000000 Binary files a/icons/mob/species/skrell/uniforms/pants.dmi and /dev/null differ diff --git a/icons/mob/species/skrell/uniforms/uniform.dmi b/icons/mob/species/skrell/uniforms/uniform.dmi deleted file mode 100644 index 0af5703cba..0000000000 Binary files a/icons/mob/species/skrell/uniforms/uniform.dmi and /dev/null differ diff --git a/icons/mob/species/skrell/uniforms/uniform_fat.dmi b/icons/mob/species/skrell/uniforms/uniform_fat.dmi deleted file mode 100644 index c887239f1f..0000000000 Binary files a/icons/mob/species/skrell/uniforms/uniform_fat.dmi and /dev/null differ diff --git a/icons/mob/species/tajaran/uniforms/color.dmi b/icons/mob/species/tajaran/uniforms/color.dmi deleted file mode 100644 index 9f282d8d7d..0000000000 Binary files a/icons/mob/species/tajaran/uniforms/color.dmi and /dev/null differ diff --git a/icons/mob/species/tajaran/uniforms/dresses.dmi b/icons/mob/species/tajaran/uniforms/dresses.dmi deleted file mode 100644 index 0c49112a12..0000000000 Binary files a/icons/mob/species/tajaran/uniforms/dresses.dmi and /dev/null differ diff --git a/icons/mob/species/tajaran/uniforms/military.dmi b/icons/mob/species/tajaran/uniforms/military.dmi deleted file mode 100644 index a11c0618bf..0000000000 Binary files a/icons/mob/species/tajaran/uniforms/military.dmi and /dev/null differ diff --git a/icons/mob/species/tajaran/uniforms/pants.dmi b/icons/mob/species/tajaran/uniforms/pants.dmi deleted file mode 100644 index 9de1e49925..0000000000 Binary files a/icons/mob/species/tajaran/uniforms/pants.dmi and /dev/null differ diff --git a/icons/mob/species/tajaran/uniforms/uniform.dmi b/icons/mob/species/tajaran/uniforms/uniform.dmi deleted file mode 100644 index 0af5703cba..0000000000 Binary files a/icons/mob/species/tajaran/uniforms/uniform.dmi and /dev/null differ diff --git a/icons/mob/species/tajaran/uniforms/uniform_fat.dmi b/icons/mob/species/tajaran/uniforms/uniform_fat.dmi deleted file mode 100644 index c887239f1f..0000000000 Binary files a/icons/mob/species/tajaran/uniforms/uniform_fat.dmi and /dev/null differ diff --git a/icons/mob/species/unathi/uniforms/color.dmi b/icons/mob/species/unathi/uniforms/color.dmi deleted file mode 100644 index 9f282d8d7d..0000000000 Binary files a/icons/mob/species/unathi/uniforms/color.dmi and /dev/null differ diff --git a/icons/mob/species/unathi/uniforms/dresses.dmi b/icons/mob/species/unathi/uniforms/dresses.dmi deleted file mode 100644 index 0c49112a12..0000000000 Binary files a/icons/mob/species/unathi/uniforms/dresses.dmi and /dev/null differ diff --git a/icons/mob/species/unathi/uniforms/military.dmi b/icons/mob/species/unathi/uniforms/military.dmi deleted file mode 100644 index a11c0618bf..0000000000 Binary files a/icons/mob/species/unathi/uniforms/military.dmi and /dev/null differ diff --git a/icons/mob/species/unathi/uniforms/pants.dmi b/icons/mob/species/unathi/uniforms/pants.dmi deleted file mode 100644 index 9de1e49925..0000000000 Binary files a/icons/mob/species/unathi/uniforms/pants.dmi and /dev/null differ diff --git a/icons/mob/species/unathi/uniforms/uniform.dmi b/icons/mob/species/unathi/uniforms/uniform.dmi deleted file mode 100644 index 0af5703cba..0000000000 Binary files a/icons/mob/species/unathi/uniforms/uniform.dmi and /dev/null differ diff --git a/icons/mob/species/unathi/uniforms/uniform_fat.dmi b/icons/mob/species/unathi/uniforms/uniform_fat.dmi deleted file mode 100644 index c887239f1f..0000000000 Binary files a/icons/mob/species/unathi/uniforms/uniform_fat.dmi and /dev/null differ diff --git a/icons/mob/uniforms/color.dmi b/icons/mob/uniforms/color.dmi deleted file mode 100644 index 9f282d8d7d..0000000000 Binary files a/icons/mob/uniforms/color.dmi and /dev/null differ diff --git a/icons/mob/uniforms/dresses.dmi b/icons/mob/uniforms/dresses.dmi deleted file mode 100644 index 0c49112a12..0000000000 Binary files a/icons/mob/uniforms/dresses.dmi and /dev/null differ diff --git a/icons/mob/uniforms/military.dmi b/icons/mob/uniforms/military.dmi deleted file mode 100644 index a11c0618bf..0000000000 Binary files a/icons/mob/uniforms/military.dmi and /dev/null differ diff --git a/icons/mob/uniforms/pants.dmi b/icons/mob/uniforms/pants.dmi deleted file mode 100644 index 9de1e49925..0000000000 Binary files a/icons/mob/uniforms/pants.dmi and /dev/null differ diff --git a/icons/mob/uniforms/uniform.dmi b/icons/mob/uniforms/uniform.dmi deleted file mode 100644 index 341d677593..0000000000 Binary files a/icons/mob/uniforms/uniform.dmi and /dev/null differ diff --git a/icons/mob/uniforms/uniform_fat.dmi b/icons/mob/uniforms/uniform_fat.dmi deleted file mode 100644 index c887239f1f..0000000000 Binary files a/icons/mob/uniforms/uniform_fat.dmi and /dev/null differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index 948af3f9e1..3669a4702e 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ