From d37cbd1ad72e4205ccd5ee63c086577d66a541b5 Mon Sep 17 00:00:00 2001 From: S34N <12197162+S34NW@users.noreply.github.com> Date: Wed, 28 Jul 2021 17:15:13 +0100 Subject: [PATCH] Apply suggestions from code review --- code/game/objects/items.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 569270c5290..a9fb4e8fcc4 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -422,12 +422,12 @@ GLOBAL_DATUM_INIT(fire_overlay, /image, image("icon" = 'icons/goonstation/effect // called when this item is removed from a storage item, which is passed on as S. The loc variable is already set to the new destination before this is called. /obj/item/proc/on_exit_storage(obj/item/storage/S as obj) - in_inventory = FALSE + in_storage = FALSE return // called when this item is added into a storage item, which is passed on as S. The loc variable is already set to the storage item. /obj/item/proc/on_enter_storage(obj/item/storage/S as obj) - in_inventory = TRUE + in_storage = TRUE return /**