diff --git a/code/game/gamemodes/changeling/changeling_powers.dm b/code/game/gamemodes/changeling/changeling_powers.dm
index 1102279c07..d8568c8f60 100644
--- a/code/game/gamemodes/changeling/changeling_powers.dm
+++ b/code/game/gamemodes/changeling/changeling_powers.dm
@@ -149,7 +149,7 @@
src << "We do not know how to parse this creature's DNA!"
return
- if(NOCLONE in T.mutations)
+ if(HUSK in T.mutations)
src << "This creature's DNA is ruined beyond useability!"
return
diff --git a/code/modules/mob/living/carbon/human/death.dm b/code/modules/mob/living/carbon/human/death.dm
index 1c3d130bf3..6db7387f79 100644
--- a/code/modules/mob/living/carbon/human/death.dm
+++ b/code/modules/mob/living/carbon/human/death.dm
@@ -96,5 +96,5 @@
/mob/living/carbon/human/proc/Drain()
ChangeToHusk()
- mutations |= NOCLONE
+ mutations |= HUSK
return