Ghosts may now examine silicons to read their laws!

- Examining an AI or Cyborg as a ghost now displays its laws.
This commit is contained in:
GunHog
2016-09-01 13:55:06 -05:00
parent 24534a07b9
commit ad66c15ac7
4 changed files with 10 additions and 1 deletions
@@ -19,4 +19,6 @@
msg += "[src]Core.exe has stopped responding! NTOS is searching for a solution to the problem...\n"
msg += "*---------*</span>"
user << msg
user << msg
..()
@@ -0,0 +1,4 @@
/mob/living/silicon/examine(mob/user) //Displays a silicon's laws to ghosts
if(laws && isobserver(user))
user << "<b>[src] has the following laws:</b>"
laws.show_laws(user)
@@ -47,3 +47,5 @@
msg += "*---------*</span>"
user << msg
..()