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

Fitzjacob

Major
40 Badges
Jun 17, 2016
524
401
  • Crusader Kings II: Charlemagne
  • Europa Universalis IV: Third Rome
  • Europa Universalis IV: Mare Nostrum
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Europa Universalis IV: Res Publica
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Art of War
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
  • Crusader Kings II
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Monks and Mystics
  • Europa Universalis IV: Mandate of Heaven
  • Crusader Kings III
  • Europa Universalis IV: Cradle of Civilization
  • Crusader Kings II: Holy Fury Pre-order
  • Shadowrun Returns
  • Crusader Kings II: Holy Fury
  • Imperator: Rome Deluxe Edition
  • Imperator: Rome
  • Imperator: Rome Sign Up
  • Tyranny: Archon Edition
  • Europa Universalis IV: Rights of Man
  • Crusader Kings II: Reapers Due
  • Crusader Kings II: Conclave
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: El Dorado
  • Victoria 2
  • Europa Universalis IV
  • Crusader Kings II: Jade Dragon
One line summary of your issue
[3.2.1][AZCE] Stem duchies can't be recreated if destoryed

Game Version
[3.2.1]

What expansions do you have installed?
All of the above

Do you have mods enabled?
Yes, but only cosmetic ones (they don't change the checksum)

Please explain your issue is in as much detail as possible.
If any of the Holy Roman stem duchies are created by decision (Franconia, Swabia, Saxony) and later destroyed while still having de jure vassals they can't be recreated. This is because the decision requires the title to be titular while the special creation conditions (for creating the title normally) are always false.

Solution
The special creation condition for creating the titles must be fixed.

Current state:
Code:
        allow = {
            conditional_tooltip = {
                k_swabia = {
                    is_titular = yes
                }
            }
            k_swabia = {
                is_titular = no
            }
        }

The conditional_tooltip is probably intended to hide the tooltip when the title isn't titular (and should be formable). But in order to function it needs a trigger. Since it lacks a trigger, the title must now both be titular and not in order to be created which can never be true.

Suggested fix:
Code:
        allow = {
            conditional_tooltip = {
                trigger = {
                    k_swabia = {
                        is_titular = yes
                    }
                }
                k_swabia = {
                    is_titular = no
                }
            }
        }

Steps to reproduce the issue.
1. Take a decision to create a grand duchy.
2. Destroy the title (the AI will do this if elected emperor)
3. Try to recreate the destroyed title.

Upload Attachment
 

Attachments

  • grand_duchy.png
    grand_duchy.png
    2,4 MB · Views: 6
Last edited:
Upvote 0
No, because the special creation condition for creating the titles the regular way requires it to be both titular and not titular which is a logical impossibility.

Ah, I thought the code you posted was from the decision itself. Sorry, my bad.