Update code/game/objects/items.dm

Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com>
This commit is contained in:
S34N
2021-07-29 08:11:05 +01:00
committed by GitHub
co-authored by SteelSlayer
parent 7a5e343c11
commit a4ac662ae2
+5 -3
View File
@@ -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()
..()