From 8bbbc6aaef7a179a52b2f57ec652b7cf292d6bb5 Mon Sep 17 00:00:00 2001 From: Rimi Nosha Date: Sat, 7 Dec 2024 16:50:26 +0000 Subject: [PATCH] [NON-MODULAR] Make Synths Able To Join Crusades (#2633) --- code/modules/religion/honorbound/honorbound_rites.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/religion/honorbound/honorbound_rites.dm b/code/modules/religion/honorbound/honorbound_rites.dm index 88eef0340ea..baa5571725e 100644 --- a/code/modules/religion/honorbound/honorbound_rites.dm +++ b/code/modules/religion/honorbound/honorbound_rites.dm @@ -33,7 +33,7 @@ if(possible_crusader.stat != CONSCIOUS) to_chat(user, span_warning("[possible_crusader] needs to be alive and conscious to join the crusade!")) return FALSE - if(TRAIT_GENELESS in possible_crusader.dna.species.inherent_traits) + if(TRAIT_GENELESS in possible_crusader.dna.species.inherent_traits && !issynthetic(possible_crusader)) // BUBBER EDIT: Allow synths to be part of a crusade: ORIGINAL: if(TRAIT_GENELESS in possible_crusader.dna.species.inherent_traits) to_chat(user, span_warning("This species disgusts [GLOB.deity]! They would never be allowed to join the crusade!")) return FALSE if(possible_crusader in sect.currently_asking)