Fixes safes not having adjacency checks (#30859)

* Update safe.dm

* Update safe.dm
This commit is contained in:
kevinz000
2017-09-19 11:56:16 -04:00
committed by Jordan Brown
parent 772924ba38
commit 5d0afedcf5
+5 -2
View File
@@ -96,7 +96,10 @@ FLOOR SAFES
if(!ishuman(usr))
return
var/mob/living/carbon/human/user = usr
if(!user.canUseTopic(src))
return
var/canhear = 0
if(user.is_holding_item_of_type(/obj/item/clothing/neck/stethoscope))
canhear = 1
@@ -199,4 +202,4 @@ FLOOR SAFES
/obj/structure/safe/floor/hide(var/intact)
invisibility = intact ? INVISIBILITY_MAXIMUM : 0
invisibility = intact ? INVISIBILITY_MAXIMUM : 0