From 89134d8b30a2cadedcd04aee4026421c61e9c3b1 Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Fri, 31 Jan 2020 08:52:45 -0500 Subject: [PATCH] updates fancy the boxes actually work now --- code/game/objects/items/storage/fancy.dm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/code/game/objects/items/storage/fancy.dm b/code/game/objects/items/storage/fancy.dm index 208f8aebec..d03835c97e 100644 --- a/code/game/objects/items/storage/fancy.dm +++ b/code/game/objects/items/storage/fancy.dm @@ -362,7 +362,8 @@ name = "ring box" desc = "A tiny box covered in soft red felt made for holding rings." icon = 'icons/obj/ring.dmi' - icon_state = "ringboxg" + icon_state = "gold ringbox" + icon_type = "gold ring" w_class = WEIGHT_CLASS_TINY spawn_type = /obj/item/clothing/gloves/ring @@ -373,9 +374,11 @@ STR.can_hold = typecacheof(list(/obj/item/clothing/gloves/ring)) /obj/item/storage/fancy/ringbox/diamond - icon_state = "ringboxd" + icon_state = "diamond ringbox" + icon_type = "diamond ring" spawn_type = /obj/item/clothing/gloves/ring/diamond /obj/item/storage/fancy/ringbox/silver - icon_state = "ringboxs" + icon_state = "silver ringbox" + icon_type = "silver ring" spawn_type = /obj/item/clothing/gloves/ring/silver \ No newline at end of file