Merge pull request #20264 from GunHog/Silicon_Ghost_Laws

Ghosts may now examine silicons to read their laws.
This commit is contained in:
oranges
2016-09-04 09:45:33 +12:00
committed by GitHub
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
..()