From 00ab8f752b7d7ef125e9fc83f05e6436462c4c84 Mon Sep 17 00:00:00 2001 From: Cameron653 Date: Sat, 18 Nov 2017 00:16:12 -0500 Subject: [PATCH] Also fixes Ivy's fluff ID --- code/modules/vore/fluffstuff/custom_items_vr.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index b7481c90a9c..1273b44e3b7 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -628,11 +628,12 @@ obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shie icon_state = "labeler1" afterattack(obj/O, mob/user as mob) - var/new_icon = "ivyholoid" + var/new_icon_state = "ivyholoid" + var/new_icon = 'icons/vore/custom_items_vr.dmi' var/new_desc = "Its a thin screen showing ID information, but it seems to be flickering." if(istype(O,/obj/item/weapon/card/id) && O.icon_state != new_icon) - //O.icon = src.icon // just in case we're using custom sprite paths with fluff items. - O.icon_state = new_icon // Changes the icon without changing the access. + O.icon = new_icon + O.icon_state = new_icon_state // Changes the icon without changing the access. O.desc = new_desc playsound(user.loc, 'sound/items/polaroid2.ogg', 100, 1) user.visible_message(" [user] reprints their ID.")