Merge pull request #1615 from Citadel-Station-13/upstream-merge-28206

[MIRROR] Examining an ore box you are adjacent to shows its contents.
This commit is contained in:
LetterJay
2017-06-16 11:09:29 -05:00
committed by GitHub
+5
View File
@@ -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)