Merge pull request #12110 from datlo/updateclingstring

Clarify changeling error message
This commit is contained in:
variableundefined
2019-08-28 21:15:54 -04:00
committed by GitHub
+1 -1
View File
@@ -303,7 +303,7 @@ var/list/possible_changeling_IDs = list("Alpha","Beta","Gamma","Delta","Epsilon"
/datum/changeling/proc/can_absorb_dna(mob/living/carbon/user, mob/living/carbon/target)
if(using_stale_dna(user))//If our current DNA is the stalest, we gotta ditch it.
to_chat(user, "<span class='warning'>We have reached our capacity to store genetic information! We must transform before absorbing more.</span>")
to_chat(user, "<span class='warning'>The DNA we are wearing is stale. Transform and try again.</span>")
return
if(!target || !target.dna)