From 581757ec25d804ae31bfa030bac1b79d03a3d490 Mon Sep 17 00:00:00 2001 From: sqnztb Date: Mon, 20 Feb 2023 17:51:49 -0500 Subject: [PATCH] Paraplegics can be Frail, too. (#73511) ## About The Pull Request Current blacklist makes it so you cannot be both frail and paraplegic, but it's intended to exclude quad amputees from taking those. ## Why It's Good For The Game Who says a paraplegic can't also have weak bones? ## Changelog :cl: fix: frail and paraplegia quirks can once again be taken together. /:cl: --- code/controllers/subsystem/processing/quirks.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/controllers/subsystem/processing/quirks.dm b/code/controllers/subsystem/processing/quirks.dm index ac9e8d5e0e8..25bd2a613c8 100644 --- a/code/controllers/subsystem/processing/quirks.dm +++ b/code/controllers/subsystem/processing/quirks.dm @@ -27,7 +27,8 @@ PROCESSING_SUBSYSTEM_DEF(quirks) list("Bad Touch", "Friendly"), list("Extrovert", "Introvert"), list("Prosthetic Limb", "Quadruple Amputee", "Body Purist"), - list("Quadruple Amputee", "Paraplegic", "Frail"), + list("Quadruple Amputee", "Paraplegic"), + list("Quadruple Amputee", "Frail"), ) /datum/controller/subsystem/processing/quirks/Initialize()