* not code stuff * other things * global vars, defines, helpers * onclick hud stuff, orphans, world.dm * controllers and datums * game folder * everything not client/mobs in modules * client folder * stage 1 mob stuff * simple animal things * silicons * carbon things * ayylmaos and monkeys * hyoomahn * icons n shit * sprite fixes * compile fixes * some fixes I cherrypicked. * qdel fixes * forgot brain refractors
27 lines
517 B
Plaintext
27 lines
517 B
Plaintext
|
|
/mob/living/silicon/ai/proc/show_laws_verb()
|
|
set category = "AI Commands"
|
|
set name = "Show Laws"
|
|
if(usr.stat == 2)
|
|
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++
|
|
|