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

Ciccillo Rre

Alluccate: "Viva 'o Rre!!!"
84 Badges
Oct 16, 2011
2.398
579
  • Imperator: Rome Deluxe Edition
  • Crusader Kings III
  • Europa Universalis IV
  • Victoria 3 Sign Up
  • Hearts of Iron IV: Cadet
  • Stellaris: Galaxy Edition
  • PDXCon 2019 "Baron"
There is at present an evident bug in the event associated to the "Create Portugal" decision. Currently part of the code reads as
Code:
option = {
        name = EVTOPTA62922
        trigger = {
            completely_controls = d_toledo
        }
        hidden_tooltip = {
            d_porto = {
                de_jure_liege = k_portugal
            }
            d_beja = {
                de_jure_liege = k_portugal
            }
        }
        k_portugal = {
            grant_title = ROOT
            copy_title_laws = d_porto
        }
        d_porto = {
            destroy_landed_title = THIS
        }
        prestige = 500
    
        hidden_tooltip = {
            k_portugal = { make_primary_title = yes }
            any_playable_ruler = {
                limit = {
                    NOT = { has_landed_title = k_portugal }
                    ai = no
                }
                narrative_event = { id = 62925 }
            }
        }
    }
}
where d_toledo is misplaced and should be substituted by d_beja as follows:
Code:
option = {
        name = EVTOPTA62922
        trigger = {
            completely_controls = d_beja
        }
        hidden_tooltip = {
            d_porto = {
                de_jure_liege = k_portugal
            }
            d_beja = {
                de_jure_liege = k_portugal
            }
        }
        k_portugal = {
            grant_title = ROOT
            copy_title_laws = d_porto
        }
        d_porto = {
            destroy_landed_title = THIS
        }
        prestige = 500
    
        hidden_tooltip = {
            k_portugal = { make_primary_title = yes }
            any_playable_ruler = {
                limit = {
                    NOT = { has_landed_title = k_portugal }
                    ai = no
                }
                narrative_event = { id = 62925 }
            }
        }
    }
}
it is an obvious oversight which requires a very simple fix.
 
Upvote 0