From 030361e1cc0d4f69b8f18a5b5c0e540c22d4458c Mon Sep 17 00:00:00 2001 From: Putnam Date: Tue, 18 May 2021 16:18:57 -0700 Subject: [PATCH] suggestions --- code/modules/antagonists/_common/antag_datum.dm | 2 +- code/modules/mob/living/carbon/human/species.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/_common/antag_datum.dm b/code/modules/antagonists/_common/antag_datum.dm index e67b5d8723..603c2c639a 100644 --- a/code/modules/antagonists/_common/antag_datum.dm +++ b/code/modules/antagonists/_common/antag_datum.dm @@ -169,7 +169,7 @@ GLOBAL_LIST_EMPTY(antagonists) if(Q.type in blacklisted_quirks) if(initial(Q.antag_removal_text)) to_chat(L, "[initial(Q.antag_removal_text)]") - L.remove_quirk(Q.type) + qdel(Q) //Returns the team antagonist belongs to if any. /datum/antagonist/proc/get_team() diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index 78309d7c23..218b750e0b 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -572,7 +572,7 @@ GLOBAL_LIST_EMPTY(roundstart_race_names) for(var/q in L.roundstart_quirks) var/datum/quirk/Q = q if(Q.type in blacklisted_quirks) - L.remove_quirk(Q.type) + qdel(Q) removed_quirks += Q.type // restore any quirks that we removed