Prevent golems from using telescience consoles

This commit is contained in:
datlo
2019-02-18 19:30:16 +00:00
parent 4679adf10e
commit c8d108f662
+3
View File
@@ -86,6 +86,9 @@
src.attack_hand(user)
/obj/machinery/computer/telescience/attack_hand(mob/user)
if(isgolem(user)) //this is why we can't have nice things free golems
to_chat(user, "<span class='warning'>Golem user detected. Access denied.</span>")
return
if(..())
return
interact(user)