Locks printed bodies properly, and shows if they are locked records on console

This commit is contained in:
Arokha Sieyes
2017-02-19 16:29:10 -05:00
parent 978b982fa2
commit bdfc9be908
3 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -156,7 +156,7 @@
"speciesname" = active_br.speciesname, \
"gender" = active_br.bodygender, \
"synthetic" = active_br.synthetic ? "Yes" : "No", \
"locked" = active_br.locked, \
"locked" = active_br.locked ? "Low" : "High", \
"cando" = can_grow_active)
else
data["activeRecord"] = null
+2
View File
@@ -21,6 +21,8 @@
eject_wait = 0
var/mob/living/carbon/human/H = new /mob/living/carbon/human(src, R.dna.species)
if(current_project.locked)
H.resleeve_lock = current_project.ckey
//Fix the external organs
for(var/part in current_project.limb_data)