diff --git a/code/modules/clothing/under/accessories/holster.dm b/code/modules/clothing/under/accessories/holster.dm index 2274a07a9f0..c64cbefe7b9 100644 --- a/code/modules/clothing/under/accessories/holster.dm +++ b/code/modules/clothing/under/accessories/holster.dm @@ -184,6 +184,7 @@ /obj/item/clothing/accessory/holster/utility name = "utility holster" desc = "A utility holster." + icon = 'icons/obj/item/clothing/accessory/utility_holsters.dmi' var/list/allowed_items = list() // A list of allowed items. @@ -212,13 +213,13 @@ /obj/item/clothing/accessory/holster/utility/custodial/armpit name = "brown custodial armpit holster" desc = "A brown utility holster which can't hold actual firearms. This particular one is designed for custodial personnel." - icon_state = "holster_brown" - item_state = "holster_brown" + icon_state = "custodial_brown" + item_state = "custodial_brown" // Brown Custodial Hip Holster /obj/item/clothing/accessory/holster/utility/custodial/hip name = "brown custodial hip holster" desc = "A brown utility holster which can't hold actual firearms. This particular one is designed for custodial personnel." - icon_state = "holster_brown_hip" - item_state = "holster_brown_hip" + icon_state = "custodial_brown_hip" + item_state = "custodial_brown_hip" /********** Utility Holsters End **********/ diff --git a/html/changelogs/sleepygemmy-holster_sprite_fix.yml b/html/changelogs/sleepygemmy-holster_sprite_fix.yml new file mode 100644 index 00000000000..852efa659a8 --- /dev/null +++ b/html/changelogs/sleepygemmy-holster_sprite_fix.yml @@ -0,0 +1,6 @@ +author: SleepyGemmy + +delete-after: True + +changes: + - bugfix: "Restores the custodial utility holster sprites." \ No newline at end of file diff --git a/icons/obj/item/clothing/accessory/utility_holsters.dmi b/icons/obj/item/clothing/accessory/utility_holsters.dmi new file mode 100644 index 00000000000..59393b4a107 Binary files /dev/null and b/icons/obj/item/clothing/accessory/utility_holsters.dmi differ