From f1a787e1670d4905f3ba42f6d3c9f3ce9ccb233f Mon Sep 17 00:00:00 2001 From: Fikou <23585223+Fikou@users.noreply.github.com> Date: Wed, 26 Apr 2023 13:48:38 +0200 Subject: [PATCH] social anxiety is incompatible with mute (#74951) ## About The Pull Request quirk called social anxiety is no longer compatible with mute as mute is a more severe option of that quirk ## Why It's Good For The Game free points are bad ## Changelog :cl: fix: social anxiety is incompatible with mute /:cl: --- code/controllers/subsystem/processing/quirks.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/controllers/subsystem/processing/quirks.dm b/code/controllers/subsystem/processing/quirks.dm index bff79d61a70..ebc8403f3fe 100644 --- a/code/controllers/subsystem/processing/quirks.dm +++ b/code/controllers/subsystem/processing/quirks.dm @@ -29,6 +29,7 @@ PROCESSING_SUBSYSTEM_DEF(quirks) list("Prosthetic Limb", "Quadruple Amputee", "Body Purist"), list("Quadruple Amputee", "Paraplegic"), list("Quadruple Amputee", "Frail"), + list("Social Anxiety", "Mute"), ) /datum/controller/subsystem/processing/quirks/Initialize()