From c0d7dfdc398aef97cc63ba7ccd3c24792a72d158 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 8 Jul 2021 00:40:28 -0400 Subject: [PATCH] Fixes #10967 --- code/modules/mining/ore_box.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mining/ore_box.dm b/code/modules/mining/ore_box.dm index e68193e815..a5dd64386a 100644 --- a/code/modules/mining/ore_box.dm +++ b/code/modules/mining/ore_box.dm @@ -18,7 +18,7 @@ var/obj/item/weapon/storage/S = W if(!S.contents.len) return - S.hide_from(usr) + S.hide_from(user) for(var/obj/item/weapon/ore/O in S.contents) S.remove_from_storage(O, src) //This will move the item to this item's contents to_chat(user, "You empty the satchel into the box.")