Skip to content

Commit f00811b

Browse files
authored
Revert "Blocks the clone pod from creating MOB_ROBOTIC mobs (#6031)"
This reverts commit 4cc67b8.
1 parent 3c3eb87 commit f00811b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

monkestation/code/game/machinery/cloning.dm

+4-4
Original file line numberDiff line numberDiff line change
@@ -133,14 +133,10 @@
133133

134134
//Start growing a human clone in the pod!
135135
/obj/machinery/clonepod/proc/growclone(clonename, ui, mutation_index, mindref, blood_type, datum/species/mrace, list/features, factions, list/quirks, datum/bank_account/insurance, list/traumas, empty)
136-
var/mob/living/carbon/human/H = new /mob/living/carbon/human(src)
137-
H.hardset_dna(ui, mutation_index, null, clonename, blood_type, mrace, features)
138136
if(panel_open)
139137
return NONE
140138
if(mess || attempting)
141139
return NONE
142-
if(H.mob_biotypes & MOB_ROBOTIC) // MONKESTATION ADDITION - no cloning robots.
143-
return NONE
144140
if(!empty) //Doesn't matter if we're just making a copy
145141
clonemind = locate(mindref) in SSticker.minds
146142
if(!istype(clonemind)) //not a mind
@@ -159,6 +155,10 @@
159155
attempting = TRUE //One at a time!!
160156
countdown.start()
161157

158+
var/mob/living/carbon/human/H = new /mob/living/carbon/human(src)
159+
160+
H.hardset_dna(ui, mutation_index, null, clonename, blood_type, mrace, features)
161+
162162
if(!HAS_TRAIT(H, TRAIT_RADIMMUNE))//dont apply mutations if the species is Mutation proof.
163163
if(efficiency > 2)
164164
var/list/unclean_mutations = (GLOB.not_good_mutations|GLOB.bad_mutations)

0 commit comments

Comments
 (0)