27 lines
520 B
Plaintext
27 lines
520 B
Plaintext
|
|
/mob/living/silicon/ai/proc/show_laws_verb()
|
|
set category = "AI Commands"
|
|
set name = "Show Laws"
|
|
if(usr.stat == DEAD)
|
|
return //won't work if dead
|
|
src.show_laws()
|
|
|
|
/mob/living/silicon/ai/show_laws(everyone = 0)
|
|
var/who
|
|
|
|
if (everyone)
|
|
who = world
|
|
else
|
|
who = src
|
|
to_chat(who, "<b>Obey these laws:</b>")
|
|
|
|
src.laws_sanity_check()
|
|
src.laws.show_laws(who)
|
|
if(!everyone)
|
|
for(var/mob/living/silicon/robot/R in connected_robots)
|
|
if(R.lawupdate)
|
|
R.lawsync()
|
|
R.show_laws()
|
|
R.law_change_counter++
|
|
|