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

DancerWithout

Private
2 Badges
Jul 16, 2013
10
0
  • Crusader Kings II
  • Europa Universalis IV
If a petty kingdom is vassal and assimilates into a high kingdom then the former petty king and all of his dukes become independent. The following chunk attached to the beginning of the immediate block for each petty( substituting the particular petty for [PETTY]) corrects this:
any_vassal ={
if = {
limit={
has_landed_title = [PETTY]
not = {num_of_king_titles = 2}
}
any_vassal ={
if ={
limit={ or = {
tier = duke
and= {
prev = {not = {num_of_duke_titles = 1}}
tier = count
}
}}
set_defacto_liege = prevprev
}
}
[PETTY] = { destroy_landed_title = yes }
set_defacto_liege = prev
}
}