From a4ac662ae281a215bbabc31f5517d902e3d0eff7 Mon Sep 17 00:00:00 2001 From: S34N <12197162+S34NW@users.noreply.github.com> Date: Thu, 29 Jul 2021 08:11:05 +0100 Subject: [PATCH] Update code/game/objects/items.dm Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> --- code/game/objects/items.dm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 297753c372d..b0f597d3a8a 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -117,9 +117,11 @@ GLOBAL_DATUM_INIT(fire_overlay, /image, image("icon" = 'icons/goonstation/effect var/in_inventory = FALSE //is this item equipped into an inventory slot or hand of a mob? var/tip_timer = 0 - /// item hover FX - var/in_storage = FALSE //is this item inside a storage object? - var/outline_filter //holder var for the item outline filter, null when no outline filter on the item. + // item hover FX + /// Is this item inside a storage object? + var/in_storage = FALSE + /// Holder var for the item outline filter, null when no outline filter on the item. + var/outline_filter /obj/item/New() ..()