From db01827edeab3165795a06cc53c4d34bf8c9840f Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 15 Jun 2017 20:26:14 -0500 Subject: [PATCH] Examining an ore box you are adjacent to shows its contents. --- code/modules/mining/satchel_ore_boxdm.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/mining/satchel_ore_boxdm.dm b/code/modules/mining/satchel_ore_boxdm.dm index 493f50c97c..ec61f4f7fb 100644 --- a/code/modules/mining/satchel_ore_boxdm.dm +++ b/code/modules/mining/satchel_ore_boxdm.dm @@ -28,6 +28,11 @@ else return ..() +/obj/structure/ore_box/examine(mob/living/user) + if(Adjacent(user) && istype(user)) + show_contents(user) + . = ..() + /obj/structure/ore_box/attack_hand(mob/user) if(Adjacent(user)) show_contents(user)