diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm index 0724422dac..28af52a646 100755 --- a/code/game/objects/items/storage/belt.dm +++ b/code/game/objects/items/storage/belt.dm @@ -835,8 +835,7 @@ name = "botanical belt" desc = "A belt used to hold most hydroponics supplies. Suprisingly, not green." icon_state = "plantbelt" - inhand_icon_state = "plantbelt" - worn_icon_state = "plantbelt" + item_state = "plantbelt" content_overlays = TRUE /obj/item/storage/belt/plant/ComponentInitialize() @@ -844,7 +843,7 @@ var/datum/component/storage/STR = GetComponent(/datum/component/storage) STR.max_items = 6 STR.max_w_class = WEIGHT_CLASS_NORMAL - STR.set_holdable(list( + STR.can_hold = typecacheof(list( /obj/item/reagent_containers/spray/plantbgone, /obj/item/plant_analyzer, /obj/item/seeds, diff --git a/icons/mob/clothing/belt.dmi b/icons/mob/clothing/belt.dmi index 4ac82ca299..a25752c1d0 100644 Binary files a/icons/mob/clothing/belt.dmi and b/icons/mob/clothing/belt.dmi differ