More fingerprint fixes

This commit is contained in:
SkyMarshal
2012-02-04 23:12:53 -07:00
parent 6478bf03dc
commit c11502eb53
3 changed files with 10 additions and 4 deletions

View File

@@ -559,7 +559,9 @@ var/engwords = list("travel", "blood", "join", "hell", "destroy", "technology",
R.blood_DNA.len++
R.blood_DNA[R.blood_DNA.len] = list(H.dna.unique_enzymes, H.dna.b_type)
else
R.blood_DNA = list(list(H.dna.unique_enzymes, H.dna.b_type))
var/list/blood_DNA_temp[1]
blood_DNA_temp[1] = list(H.dna.unique_enzymes, H.dna.b_type)
R.blood_DNA = blood_DNA_temp
return
else
user << "The book seems full of illegible scribbles. Is this a joke?"
@@ -604,7 +606,9 @@ var/engwords = list("travel", "blood", "join", "hell", "destroy", "technology",
var/obj/effect/rune/R = new /obj/effect/rune
if(istype(user, /mob/living/carbon/human))
var/mob/living/carbon/human/H = user
R.blood_DNA = list(list(H.dna.unique_enzymes, H.dna.b_type))
var/list/blood_DNA_temp[1]
blood_DNA_temp[1] = list(H.dna.unique_enzymes, H.dna.b_type)
R.blood_DNA = blood_DNA_temp
switch(r)
if("teleport")
var/list/words = list("ire", "ego", "nahlizet", "certum", "veri", "jatkaa", "balaq", "mgar", "karazet", "geeri")