One line summary of your issue
[3.0.1.1] Succession voting: "is a claimant" is backwards
Game Version
3.0.1.1
What expansions do you have installed?
The Reapers Due,
Conclave,
Horse Lords,
Charlemagne,
Rajas of India,
Sons of Abraham,
The Old Gods,
The Republic,
Legacy of Rome,
Sword of Islam,
Holy Fury
Do you have mods enabled?
Yes
Please explain your issue is in as much detail as possible.
"He is a claimant to the title: +30" is presumably intended to trigger when the candidate has a claim on the emperor's title. Instead, it triggers when the candidate has a claim on the title belonging to the emperor's chosen successor.
The problem is in this block:
Changing "FROMFROM" to "ROOT_FROMFROM" fixes the issue.
(Additionally, "has_claim" in the first clause should be changed to "has_strong_claim" so weak claims don't count twice.)
Steps to reproduce the issue.
1. Load the save
2. Look to see why the Prince-Bishop of Trier is voting for the Duke of Styria as the next Holy Roman Emperor:
2a. Click Laws (F4)
2b. Click HRE in the top strip of Laws screen
2c. Click Inheritance tab of Laws screen
2d. Click "View Electors"
2e. Hover "Candidate Score" next to the elector (Trier)
Upload Attachment
[3.0.1.1] Succession voting: "is a claimant" is backwards
Game Version
3.0.1.1
What expansions do you have installed?
The Reapers Due,
Conclave,
Horse Lords,
Charlemagne,
Rajas of India,
Sons of Abraham,
The Old Gods,
The Republic,
Legacy of Rome,
Sword of Islam,
Holy Fury
Do you have mods enabled?
Yes
Please explain your issue is in as much detail as possible.
"He is a claimant to the title: +30" is presumably intended to trigger when the candidate has a claim on the emperor's title. Instead, it triggers when the candidate has a claim on the title belonging to the emperor's chosen successor.
The problem is in this block:
Code:
additive_modifier = {
value = 30
localisation_key = tooltip_feudal_elector_vote_strong_claimant
FROM = {
has_claim = FROMFROM
}
}
additive_modifier = {
value = 15
localisation_key = tooltip_feudal_elector_vote_weak_claimant
FROM = {
has_weak_claim = FROMFROM
}
}
Changing "FROMFROM" to "ROOT_FROMFROM" fixes the issue.
(Additionally, "has_claim" in the first clause should be changed to "has_strong_claim" so weak claims don't count twice.)
Steps to reproduce the issue.
1. Load the save
2. Look to see why the Prince-Bishop of Trier is voting for the Duke of Styria as the next Holy Roman Emperor:
2a. Click Laws (F4)
2b. Click HRE in the top strip of Laws screen
2c. Click Inheritance tab of Laws screen
2d. Click "View Electors"
2e. Hover "Candidate Score" next to the elector (Trier)
Upload Attachment
Attachments
Upvote
0