From 7303e7777c7f705730014422496414e4612e47e5 Mon Sep 17 00:00:00 2001
From: MrGloopy <155857749+MrGloopy@users.noreply.github.com>
Date: Sat, 16 May 2026 09:04:56 +1000
Subject: [PATCH] remove mutual exclusivity of Common second language and
Bilingual because i wanted multiple languages once (#5582)
## About The Pull Request
Simply removes the mutual exclusivity of CSL and Bilingual quirks, since
you can have the other language quirk with CSL but not Bilingual.
## Why It's Good For The Game
If you can have the other language quirk with CSL, why not Bilingual?
## Proof Of Testing
if it compiles it works, submitting via vscode
Screenshots/Videos
## Changelog
:cl:
balance: Removed mutual exclusivity of Common Second Language and
Bilingual quirks.
/: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 0db23d336a0..02e811f2dc4 100644
--- a/code/controllers/subsystem/processing/quirks.dm
+++ b/code/controllers/subsystem/processing/quirks.dm
@@ -22,7 +22,8 @@ GLOBAL_LIST_INIT_TYPED(quirk_blacklist, /list/datum/quirk, list(
//list(/datum/quirk/quadruple_amputee, /datum/quirk/frail), // SKYRAT EDIT REMOVAL- Since we have synth wounds now, frail has a large downside for prosthetics and such
list(/datum/quirk/social_anxiety, /datum/quirk/mute),
list(/datum/quirk/mute, /datum/quirk/softspoken),
- list(/datum/quirk/bilingual, /datum/quirk/foreigner, /datum/quirk/csl),
+ //list(/datum/quirk/bilingual, /datum/quirk/foreigner, /datum/quirk/csl),
+ list(/datum/quirk/bilingual, /datum/quirk/foreigner), //BUBBER EDIT ADD
//BUBBER EDIT (item_quirk)
list(/datum/quirk/spacer_born, /datum/quirk/item_quirk/settler),
list(/datum/quirk/photophobia, /datum/quirk/nyctophobia),