• 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.
Status
Not open for further replies.

Werther

Lt. General
87 Badges
Jan 26, 2010
1.509
3.020
  • Cities: Skylines - Green Cities
  • Cities: Skylines - After Dark
  • Cities: Skylines - Snowfall
  • Tyranny: Archon Edition
  • Pillars of Eternity
  • Europa Universalis 4: Emperor
  • Crusader Kings III
  • Stellaris: Necroids
  • Cities: Skylines - Campus
  • Island Bound
  • Cities: Skylines - Natural Disasters
  • Prison Architect: Psych Ward
  • Stellaris: Federations
  • Imperator: Rome - Magna Graecia
  • Stellaris: Nemesis
  • Cities: Skylines - Parklife
  • Cities: Skylines Industries
  • Europa Universalis IV
  • Divine Wind
  • Shadowrun Returns
  • Cities: Skylines - Mass Transit
  • Europa Universalis: Rome
  • Sengoku
  • Victoria 2: A House Divided
  • Heir to the Throne
  • Hearts of Iron III
  • Victoria 2: Heart of Darkness
  • Rome: Vae Victis
  • Europa Universalis III Complete
  • Deus Vult
  • Crusader Kings II
  • Hearts of Iron IV: Cadet
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Reapers Due
  • Stellaris: Galaxy Edition
  • Stellaris
  • Crusader Kings II: Conclave
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Rights of Man
  • Stellaris: Lithoids
  • Stellaris: Digital Anniversary Edition
  • Crusader Kings II: Monks and Mystics
  • Europa Universalis IV: Mandate of Heaven
  • Europa Universalis IV: Cradle of Civilization
  • Stellaris: Humanoids Species Pack
  • Stellaris: Apocalypse
  • Stellaris: Distant Stars
  • Europa Universalis IV: Dharma
  • Stellaris: Megacorp

Information​

I have verifed my game files (Steam only)​

Yes

I have disabled all mods​

Yes

I am running the latest game update​

Yes

Required​

Summary​

Male dominated religions can enact Equal succession

Description​

Religions with the Male dominated doctrine (Catholics, Orthodox, Muslims) can enact Equal succession.

Steps to reproduce​

Take any character in the world with a Male dominated religion and you can enact equal succession (just need vassal approval and prestige).

Game Version​

1.9.0.3

Platform​

Windows

Additional Information​

Affected Feature​

  • Gameplay
  • AI

Save Game​

View attachment Roi_Heinrich_de_Lotharingie_1159_05_06.ck3

Other Attachments​



 
I thik I found what was the problem. In common/laws/00_succession_laws :

equal_law = {
can_title_have = {
can_title_have_law_general_trigger = yes
}
should_show_for_title = { # Never show this in the UI, just apply it through script
always = no
}
can_keep = {
custom_tooltip = {
text = equal_law_culture_faith_or_innovation_trigger
OR = {
culture = { has_cultural_parameter = gender_equal_inheritance }
faith = { has_doctrine = doctrine_gender_equal }
AND = { #Culture is female dominated but religion is male dominated
faith = { has_doctrine = doctrine_gender_male_dominated }
OR = {
# Default game rules.
NAND = {
has_game_rule = inversed_gender_equality
culture = { has_cultural_parameter = male_only_inheritance }
}
# Inverted game rules.
AND = {
has_game_rule = inversed_gender_equality
culture = { has_cultural_parameter = female_only_inheritance }
}
}
}
# Culture is male dominated but faith is female dominated
AND = {
faith = { has_doctrine = doctrine_gender_female_dominated }
OR = {
# Default game rules.
NAND = {
has_game_rule = inversed_gender_equality
culture = { has_cultural_parameter = female_only_inheritance }
}
# Inverted game rules.
AND = {
has_game_rule = inversed_gender_equality
culture = { has_cultural_parameter = male_only_inheritance }
}
}
}
}
}
}
can_pass = {
#can_change_to_equal_succession_law_trigger = yes
can_change_succession_law_trigger = yes
}
should_start_with = {
NOR = {
culture = { has_cultural_parameter = female_preference_inheritance }
culture = { has_cultural_tradition = tradition_nubian_warrior_queens }
}
faith = {
has_doctrine = doctrine_gender_equal
}
trigger_if = {
limit = { has_game_rule = inversed_gender_equality }
# For when female_only_law ceases to be valid
NOT = { has_realm_law = male_only_law }
}
trigger_else = {
# For when female_only_law ceases to be valid
NOT = { has_realm_law = female_only_law }
}
}
succession = {
gender_law = equal
}
flag = men_can_have_multiple_spouses
flag = men_can_have_consorts
flag = women_can_have_multiple_spouses
flag = women_can_have_consorts

pass_cost = {
prestige = change_succession_law_prestige_cost
}
revoke_cost = {
prestige = change_succession_law_prestige_cost
}

ai_will_do = {
if = {
limit = {
primary_title.tier > tier_county
faith = {
NOT = {
has_dominant_ruling_gender = prev
}
}
}
value = 2
}
}
}

There is a N before AND (see in red). I deleted the N and it worked.
 
  • 1
  • 1
Reactions:
Status
Not open for further replies.