Minor fixes for previous commit, implemented default species languages.

This commit is contained in:
Zuhayr
2014-10-07 09:51:48 +10:30
parent 96e57fc091
commit 2b3e3667d4
8 changed files with 41 additions and 22 deletions

View File

@@ -92,8 +92,12 @@
// They're also super gross and ooze ichor.
if(prob(5))
var/datum/reagent/blood = owner.reagents.reagent_list["blood"]
blood_splatter(owner,blood,1)
var/mob/living/carbon/human/H = owner
if(!istype(H))
return
var/datum/reagent/blood = H.vessel.reagent_list["blood"]
blood_splatter(H,blood,1)
var/obj/effect/decal/cleanable/blood/splatter/goo = locate() in get_turf(owner)
if(goo)
goo.name = "husk ichor"