From 21b43332b7f9edaf9af8f837c46962df56303623 Mon Sep 17 00:00:00 2001 From: Charlie Nolan Date: Fri, 29 Mar 2024 07:48:44 -0700 Subject: [PATCH] Fixed the grey autocloner bug again, this time for greys. (#24872) --- code/game/objects/structures/grey_autocloner.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/grey_autocloner.dm b/code/game/objects/structures/grey_autocloner.dm index 5178e6eadcf..d2bba365c31 100644 --- a/code/game/objects/structures/grey_autocloner.dm +++ b/code/game/objects/structures/grey_autocloner.dm @@ -65,7 +65,7 @@ H.dna = R.dna.Clone() - H.set_species(/datum/species/grey) //This is a grey cloner after all. Funnier this way tbh + H.set_species(/datum/species/grey, skip_same_check = TRUE) //This is a grey cloner after all. Funnier this way tbh for(var/datum/language/L in R.languages) H.add_language(L.name)