From a06b2b2589e6dcaa75f80edec12099fb36125d4b Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 1 Jun 2021 01:37:18 +0200 Subject: [PATCH] [MIRROR] Stops carpotoxin from removing temporal scars. (#6062) * Stops carpotoxin from removing temporal scars. (#59382) # About The Pull Request Hopefully simply removes the feature of carpotoxin where it deletes temporal scars. # Why It's Good For The Game We already have a "Clear Slots" button in the character setup window that lets you delete temporal scars for the given character. This is just meant to prevent accidental scar removals so people don't lose them by, for example, accidentally drinking a spiked drink. * Stops carpotoxin from removing temporal scars. Co-authored-by: rasepretep <85033934+rasepretep@users.noreply.github.com> --- code/modules/reagents/chemistry/reagents/toxin_reagents.dm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/toxin_reagents.dm b/code/modules/reagents/chemistry/reagents/toxin_reagents.dm index 1f1deee0131..1e6b5f8a194 100644 --- a/code/modules/reagents/chemistry/reagents/toxin_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/toxin_reagents.dm @@ -213,11 +213,6 @@ ph = 12 chemical_flags = REAGENT_CAN_BE_SYNTHESIZED -/datum/reagent/toxin/carpotoxin/on_mob_life(mob/living/carbon/M, delta_time, times_fired) - . = ..() - for(var/i in M.all_scars) - qdel(i) - /datum/reagent/toxin/zombiepowder name = "Zombie Powder" description = "A strong neurotoxin that puts the subject into a death-like state."