diff --git a/code/modules/clothing/under/accessories/badges.dm b/code/modules/clothing/under/accessories/badges.dm index 4935f9246ac..352afe66cfd 100644 --- a/code/modules/clothing/under/accessories/badges.dm +++ b/code/modules/clothing/under/accessories/badges.dm @@ -165,23 +165,31 @@ /obj/item/clothing/accessory/badge/officer name = "security officer's badge" desc = "A bronze security badge." - icon_state = "bronzebadge" - overlay_state = "bronzebadge" - slot_flags = SLOT_TIE + icon_state = "officerbadge" + item_state = "officerbadge" + overlay_state = "officerbadge" /obj/item/clothing/accessory/badge/warden name = "warden's badge" desc = "A silver security badge." - icon_state = "silverbadge" - overlay_state = "silverbadge" - slot_flags = SLOT_TIE + icon_state = "wardenbadge" + item_state = "wardenbadge" + overlay_state = "wardenbadge" /obj/item/clothing/accessory/badge/hos name = "head of security's badge" desc = "An immaculately polished gold security badge." - icon_state = "goldbadge" - overlay_state = "goldbadge" - slot_flags = SLOT_TIE + icon_state = "hosbadge" + item_state = "hosbadge" + overlay_state = "hosbadge" + +/obj/item/clothing/accessory/badge/investigator + name = "\improper investigator badge" + desc = "This badge marks the holder as an investigative agent." + icon_state = "invbadge" + overlay_state = "invbadge" + badge_string = "Corporate Investigator" + /obj/item/clothing/accessory/badge/bssb name = "\improper BSSB agent's badge" @@ -252,13 +260,6 @@ icon_state = "marshalbadge" badge_string = "Federal Marshal" -/obj/item/clothing/accessory/badge/investigator - name = "\improper investigator badge" - desc = "This badge marks the holder as an investigative agent." - icon_state = "invbadge" - overlay_state = "invbadge" - badge_string = "Corporate Investigator" - /obj/item/clothing/accessory/badge/idbadge name = "\improper ID badge" desc = "A descriptive identification badge with the holder's credentials." diff --git a/html/changelogs/ElorgRHG-badge-tweak.yml b/html/changelogs/ElorgRHG-badge-tweak.yml new file mode 100644 index 00000000000..5cb244d2ab6 --- /dev/null +++ b/html/changelogs/ElorgRHG-badge-tweak.yml @@ -0,0 +1,13 @@ +# Your name. +author: ElorgRHG + +# 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, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - imageadd: "Tweaked the sprites for security badge accessories and added belt sprites for them." diff --git a/icons/mob/belt.dmi b/icons/mob/belt.dmi index 66619bafa93..d71057500c4 100644 Binary files a/icons/mob/belt.dmi and b/icons/mob/belt.dmi differ diff --git a/icons/mob/ties.dmi b/icons/mob/ties.dmi index 131a91bdc03..d3cf0dfb320 100644 Binary files a/icons/mob/ties.dmi and b/icons/mob/ties.dmi differ diff --git a/icons/obj/clothing/ties.dmi b/icons/obj/clothing/ties.dmi index 25669628e05..85f7c22c349 100644 Binary files a/icons/obj/clothing/ties.dmi and b/icons/obj/clothing/ties.dmi differ