• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

InsidiousMage

Field Marshal
32 Badges
Mar 4, 2021
3.499
15.075
Noticed this in the current patch but Arabic and Turkic rulers have the decision to Adopt Clan Ways but still adopt Feudal government when you actually look at the decision. Nothing was mentioned about this in the patch notes so I'm sure the clan part is a bug but I'm wondering if anyone has any more insight. I've add two screenshots as attachments.
 

Attachments

  • 1158310_20240930172741_1.png
    1158310_20240930172741_1.png
    2,4 MB · Views: 0
  • 1158310_20240930172813_1.png
    1158310_20240930172813_1.png
    2,7 MB · Views: 0
The decision name loc checks religion and culture but the effect only checks religion
Code:
ep3_is_clan_inclined_trigger = {
    OR = {
        faith.religion = religion:islam_religion
        culture ?= {
            OR = {
                has_cultural_pillar = heritage_arabic
                has_cultural_pillar = heritage_iranian
                has_cultural_pillar = heritage_turkic
            }
        }
    }
}
Code:
    ##You're an independent Muslim? Convert to clan!
    else_if = {
        limit = {
            is_independent_ruler = yes
            faith = { religion_tag = islam_religion }
        }
        change_government = clan_government
    }
 
  • 2
Reactions: