From 6082915cf9e5a4c0bfc36c227fbdf39490d332a3 Mon Sep 17 00:00:00 2001
From: tipoima <61978315+tipoima@users.noreply.github.com>
Date: Tue, 11 Jun 2024 11:57:13 +0500
Subject: [PATCH] can_absorb_dna() no longer returns false when DNA is already
stored (#25832)
---
code/modules/antagonists/changeling/datum_changeling.dm | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/code/modules/antagonists/changeling/datum_changeling.dm b/code/modules/antagonists/changeling/datum_changeling.dm
index 6ebc385db76..e6f36e577ae 100644
--- a/code/modules/antagonists/changeling/datum_changeling.dm
+++ b/code/modules/antagonists/changeling/datum_changeling.dm
@@ -425,8 +425,7 @@ RESTRICT_TYPE(/datum/antagonist/changeling)
to_chat(user, "This creature does not have DNA!")
return FALSE
if(get_dna(target.dna))
- to_chat(user, "We already have this DNA in storage!")
- return FALSE
+ to_chat(user, "We already have this DNA in storage.")
return TRUE
/datum/antagonist/changeling/proc/on_death(mob/living/L, gibbed)