Description now meantions all mutations that the vine has.

This commit is contained in:
phil235
2015-01-03 00:15:06 +01:00
parent 840d2e87bd
commit 235f92623b
+4 -1
View File
@@ -378,7 +378,10 @@
SV.mutations |= pick(mutations_list)
var/datum/spacevine_mutation/randmut = pick(SV.mutations)
SV.color = randmut.hue
SV.desc = "An extremely expansionistic species of vine. These are [randmut.name] vines."
SV.desc = "An extremely expansionistic species of vine. These are "
for(var/datum/spacevine_mutation/M in SV.mutations)
SV.desc += "[M.name] "
SV.desc += "vines."
for(var/datum/spacevine_mutation/SM in SV.mutations)
SM.on_birth(SV)