diff --git a/code/game/objects/items/weapons/storage/belt.dm b/code/game/objects/items/weapons/storage/belt.dm index c786c8e0909..908a9dbeeb7 100644 --- a/code/game/objects/items/weapons/storage/belt.dm +++ b/code/game/objects/items/weapons/storage/belt.dm @@ -56,7 +56,8 @@ /obj/item/extinguisher/mini, /obj/item/holosign_creator, /obj/item/radio, - /obj/item/robotanalyzer) + /obj/item/robotanalyzer, + /obj/item/clothing/gloves) /obj/item/storage/belt/utility/full/populate_contents() new /obj/item/screwdriver(src) diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 9d6c201462d..58aa0c81bfe 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -287,6 +287,7 @@ BLIND // can't see anything gender = PLURAL //Carn: for grammarically correct text-parsing w_class = WEIGHT_CLASS_SMALL icon = 'icons/obj/clothing/gloves.dmi' + belt_icon = "bgloves" siemens_coefficient = 0.50 body_parts_covered = HANDS slot_flags = ITEM_SLOT_GLOVES diff --git a/code/modules/clothing/gloves/color.dm b/code/modules/clothing/gloves/color.dm index 7743bb3375d..28893bfdc32 100644 --- a/code/modules/clothing/gloves/color.dm +++ b/code/modules/clothing/gloves/color.dm @@ -6,6 +6,7 @@ name = "insulated gloves" icon_state = "yellow" item_state = "ygloves" + belt_icon = "ygloves" siemens_coefficient = 0 permeability_coefficient = 0.05 item_color="yellow" @@ -63,6 +64,7 @@ name = "budget insulated gloves" icon_state = "yellow" item_state = "ygloves" + belt_icon = "ygloves" siemens_coefficient = 1 //Set to a default of 1, gets overridden in New() permeability_coefficient = 0.05 item_color="yellow" diff --git a/icons/obj/clothing/belts.dmi b/icons/obj/clothing/belts.dmi index 14019b5d25a..5a267bd2c8e 100644 Binary files a/icons/obj/clothing/belts.dmi and b/icons/obj/clothing/belts.dmi differ