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:
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:
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
[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
Last edited:
Upvote
0