• 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.

jonjowett

Field Marshal
83 Badges
Aug 31, 2012
4.153
2.660
  • Crusader Kings II
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Republic
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Old Gods
  • Europa Universalis IV: Mare Nostrum
  • Crusader Kings II: Monks and Mystics
  • BATTLETECH
  • Cities: Skylines - Natural Disasters
  • Stellaris: Leviathans Story Pack
  • Stellaris: Digital Anniversary Edition
  • Tyranny: Archon Edition
  • Europa Universalis IV: Rights of Man
  • Hearts of Iron IV: Colonel
  • Hearts of Iron IV: Cadet
  • Stellaris Sign-up
  • Cities: Skylines - Mass Transit
  • Europa Universalis IV: Mandate of Heaven
  • Stellaris: Distant Stars
  • Europa Universalis IV: Golden Century
  • Surviving Mars
  • Shadowrun Returns
  • Cities: Skylines - Parklife
  • Tyranny - Bastards Wound
  • Cities: Skylines - Green Cities
  • Stellaris: Megacorp
  • Stellaris: Humanoids Species Pack
  • Stellaris: Apocalypse
  • Crusader Kings II: Charlemagne
  • Europa Universalis IV
  • Europa Universalis IV: Dharma
  • Imperator: Rome Sign Up
  • Crusader Kings II: Holy Fury
  • Europa Universalis IV: Rule Britannia
  • BATTLETECH - Digital Deluxe Edition
  • Shadowrun: Dragonfall
  • Victoria 2
  • 500k Club
  • Stellaris: Ancient Relics
  • Europa Universalis IV: El Dorado
  • Europa Universalis 4: Emperor
  • Crusader Kings II: Way of Life
  • Pillars of Eternity
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Horse Lords
  • Crusader Kings II: Conclave
  • Imperator: Rome Deluxe Edition
One line summary of your issue
[3.2.1] [AZCE] Sexual inequality in forging Grand Crusader bloodline

Game Version
[3.2.1] [AZCE]

What expansions do you have installed?
All of the above

Do you have mods enabled?
No

Please explain your issue is in as much detail as possible.
If a character with the "Crusader King" trait is the most-participating crusader in a subsequent crusade, he will forge the "Grand Crusader" bloodline.

However, characters with "Crusader Queen" have to be the most-participating crusader in *two* subsequent crusades in order to forge the same bloodline. (In other words, they have to follow the same criteria as every other character in the game. But, given the in-game logic, this means that they actually have to work harder than everyone else - they have to win three Crusades in total.)

This sexual inequality is probably an oversight, caused by the fact that crusader_king and crusader_queen are different traits, even though they are earned in exactly the same way.

Here's the relevant code from 00_cb_types:

Code:
            # Check most participating Crusader if they are potential Crusader material
            most_participating_crusader = {
                if = {
                    limit = {
                        NOR = {
                            has_character_flag = grandCrusader
                            trait = crusader_king
                        }
                    }
                    set_character_flag = grandCrusader
                }
                else_if = {
                    limit = {
                        OR = {
                            has_character_flag = grandCrusader
                            trait = crusader_king
                        }
                    }
                    narrative_event = { id = HF.49020 }
                }
            }

And here's my suggested fix:

Code:
            # Check most participating Crusader if they are potential Crusader material
            most_participating_crusader = {
                if = {
                    limit = {
                        NOR = {
                            has_character_flag = grandCrusader
                            trait = crusader_king
                            trait = crusader_queen
                        }
                    }
                    set_character_flag = grandCrusader
                }
                else_if = {
                    limit = {
                        OR = {
                            has_character_flag = grandCrusader
                            trait = crusader_king
                            trait = crusader_queen
                        }
                    }
                    narrative_event = { id = HF.49020 }
                }
            }

Steps to reproduce the issue.
Load the attached "Before Winning Crusade" save. (May need to rename to "Ironman_DiCapua.ck2" to avoid error messages.)

Assault a few holdings (to be sure to become the most-participating crusader - it's *very* close).

When victory is declared, note that you are the winner and that your beneficiary gets the kingdom (of Thrace).

However, you do not get to forge a bloodline. (Whereas, if you had been male, you would have.)

Upload Attachment
 

Attachments

  • Ironman_DiCapua_03a_BeforeWinningCrusade.ck2
    10,8 MB · Views: 0
  • Ironman_DiCapua_03b_AfterWinningCrusade.ck2
    10,7 MB · Views: 0
  • 20190719214640_1.jpg
    20190719214640_1.jpg
    1.014,2 KB · Views: 2
Upvote 0