From 6102cbbd0226e11690f57e4c02429d58bd414e89 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 16 Apr 2017 17:11:46 -0500 Subject: [PATCH] [MIRROR] Makes a change_bodypart_status call use defines (#416) * Makes a change_bodypart_status call use defines * removes rejected file --- code/modules/mob/living/carbon/human/species_types/android.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species_types/android.dm b/code/modules/mob/living/carbon/human/species_types/android.dm index f211de52bc..0e63115652 100644 --- a/code/modules/mob/living/carbon/human/species_types/android.dm +++ b/code/modules/mob/living/carbon/human/species_types/android.dm @@ -12,7 +12,7 @@ . = ..() for(var/X in C.bodyparts) var/obj/item/bodypart/O = X - O.change_bodypart_status(BODYPART_ROBOTIC, 0, 1) + O.change_bodypart_status(BODYPART_ROBOTIC, FALSE, TRUE) /datum/species/android/on_species_loss(mob/living/carbon/C) . = ..()