diff --git a/code/modules/client/preference_setup/loadout/loadout_factions.dm b/code/modules/client/preference_setup/loadout/loadout_factions.dm index e8d7b404c5a..d1ecae98d2f 100644 --- a/code/modules/client/preference_setup/loadout/loadout_factions.dm +++ b/code/modules/client/preference_setup/loadout/loadout_factions.dm @@ -239,7 +239,7 @@ faction = "Private Military Contracting Group" /datum/gear/faction/pmcg_sec_uniforms - display_name = "EPMC security uniform selection" + display_name = "PMCG/EPMC security uniform selection" description = "A selection of PMCG and EPMC security uniforms." path = /obj/item/clothing/under/rank/security/pmc/epmc slot = slot_w_uniform @@ -249,6 +249,8 @@ /datum/gear/faction/pmcg_sec_uniforms/New() ..() var/list/pmcg_sec_uniforms = list() + pmcg_sec_uniforms["PMCG uniform"] = /obj/item/clothing/under/rank/security/pmc/pmcsec + pmcg_sec_uniforms["PMCG uniform, alt"] = /obj/item/clothing/under/rank/security/pmc/pmcsec/alt pmcg_sec_uniforms["EPMC uniform"] = /obj/item/clothing/under/rank/security/pmc/epmc pmcg_sec_uniforms["EPMC uniform, alt"] = /obj/item/clothing/under/rank/security/pmc/epmc/alt pmcg_sec_uniforms["EPMC detective uniform"] = /obj/item/clothing/under/det/pmc/alt @@ -259,7 +261,7 @@ path = /obj/item/clothing/accessory/sleevepatch/erisec slot = slot_tie faction = "Private Military Contracting Group" - + /datum/gear/faction/pmc_patch display_name = "PMCG armband" path = /obj/item/clothing/accessory/armband/pmc diff --git a/code/modules/clothing/under/jobs/security.dm b/code/modules/clothing/under/jobs/security.dm index d3a1134dafa..9be95bacf0a 100644 --- a/code/modules/clothing/under/jobs/security.dm +++ b/code/modules/clothing/under/jobs/security.dm @@ -54,6 +54,15 @@ icon_state = "pmc_officer" item_state = "pmc_officer" +/obj/item/clothing/under/rank/security/pmc/pmcsec + name = "PMCG security uniform" + icon_state = "pmc" + item_state = "pmc" + +/obj/item/clothing/under/rank/security/pmc/pmcsec/alt + icon_state = "pmc_alt" + item_state = "pmc_alt" + /obj/item/clothing/under/rank/security/pmc/epmc // Note: Item Icon placeholder name = "EPMC security uniform" desc_fluff = "The EPMC is a subsidiary of the PMCG." diff --git a/html/changelogs/wezzy_pmcgfix.yml b/html/changelogs/wezzy_pmcgfix.yml new file mode 100644 index 00000000000..7eceacc7e82 --- /dev/null +++ b/html/changelogs/wezzy_pmcgfix.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: Wowzewow (Wezzy) + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Adds missing PMCG alt sec uniforms."