Merge pull request #10923 from datlo/canthavenicethings

Prevent golems from using telescience consoles
This commit is contained in:
variableundefined
2019-02-24 11:59:31 +08:00
committed by GitHub
+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'>You can't make sense of the console or how to use it.</span>")
return
if(..())
return
interact(user)