Apply suggestions from code review

This commit is contained in:
S34N
2021-07-28 17:15:13 +01:00
committed by GitHub
parent 14bfd19814
commit d37cbd1ad7
+2 -2
View File
@@ -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
/**