Fixes for *custom v/h emotes

Blood type is now a variable of the DNA datum
Fixed runtime from blood
Fixed the AI prompt being missed.
Added breath holding.
This commit is contained in:
SkyMarshal
2012-02-04 14:17:17 -07:00
parent 9072a0e760
commit 7a4b21382e
16 changed files with 113 additions and 56 deletions
+2 -1
View File
@@ -119,6 +119,7 @@ MASS SPECTROMETER
F.fingerprints = md5(M.dna.uni_identity)
F.icon_state = "fingerprint1"
F.name = text("FPrintC- '[M.name]'")
user << "\blue Done printing."
user << text("\blue [M]'s Fingerprints: [md5(M.dna.uni_identity)]")
if ( !(M.blood_DNA) )
@@ -126,7 +127,7 @@ MASS SPECTROMETER
else
user << "\blue Blood found on [M]. Analysing..."
spawn(15)
for(var/i = 1, i < M.blood_DNA.len, i++)
for(var/i = 1, i <= M.blood_DNA.len, i++)
var/list/templist = M.blood_DNA[i]
user << "\blue Blood type: [templist[2]]\nDNA: [templist[1]]"
return