admins should be able to see, and anyone else shouldn't break it, and i probably need sleep

This commit is contained in:
SandPoot
2021-03-10 01:18:31 -03:00
parent 3b0ebc0b80
commit 024d0ec692
@@ -243,9 +243,10 @@
// Check if the user can use it.
/obj/machinery/telecomms/proc/canInteract(mob/user)
var/get = user.get_active_held_item()
var/obj/item/I = get
if(!issilicon(user))
var/obj/item/I = user.get_active_held_item()
if(!I)
return FALSE
if(!issiliconoradminghost(user))
if(I.tool_behaviour == TOOL_MULTITOOL)
return TRUE
if(hasSiliconAccessInArea(user))