mirror of
https://github.com/quotefox/Hyper-Station-13.git
synced 2026-07-12 00:02:24 +01:00
6 lines
232 B
Plaintext
6 lines
232 B
Plaintext
/mob/living/silicon/examine(mob/user) //Displays a silicon's laws to ghosts
|
|
. = ..()
|
|
if(laws && isobserver(user))
|
|
. += "<b>[src] has the following laws:</b>"
|
|
for(var/law in laws.get_law_list(include_zeroth = TRUE))
|
|
. += law |