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

Razor Feather

Captain
63 Badges
Dec 15, 2018
415
219
  • Crusader Kings II: Jade Dragon
  • Stellaris: Synthetic Dawn
  • Europa Universalis IV: Third Rome
  • Stellaris
  • Imperator: Rome - Magna Graecia
  • Stellaris: Galaxy Edition
  • BATTLETECH: Season pass
  • Hearts of Iron IV: Cadet
  • Crusader Kings II: Reapers Due
  • Europa Universalis IV: Rights of Man
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Leviathans Story Pack
  • Hearts of Iron IV: Together for Victory
  • Crusader Kings II: Monks and Mystics
  • Stellaris - Path to Destruction bundle
  • Europa Universalis IV: Mandate of Heaven
  • BATTLETECH
  • Hearts of Iron IV: Death or Dishonor
  • Age of Wonders III
  • Europa Universalis IV: Cradle of Civilization
  • Hearts of Iron IV: Expansion Pass
  • Stellaris: Apocalypse
  • Europa Universalis IV: Rule Britannia
  • Stellaris: Distant Stars
  • Europa Universalis IV: Dharma
  • Crusader Kings II: Conclave
  • Crusader Kings II: Holy Fury
  • Europa Universalis 4: Emperor
  • Europa Universalis IV
  • Stellaris: Federations
  • BATTLETECH: Heavy Metal
  • Stellaris: Lithoids
  • Europa Universalis IV: Golden Century
  • Warlock: Master of the Arcane
  • Europa Universalis IV: El Dorado
  • Imperator: Rome
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: Common Sense
  • Imperator: Rome Deluxe Edition
  • Crusader Kings II: Horse Lords
  • Stellaris: Ancient Relics
  • Europa Universalis IV: Cossacks
  • Stellaris: Megacorp
  • BATTLETECH: Flashpoint
  • 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: Rajas of India
So right now when governors choose a policy to implement, they will often pick religious conversion even when the entire province is already over 90% the correct religion, and so choosing conversion policy makes no sense. However, they don't do this for assimilation. If the whole province is the correct culture, they never choose assimilation. I thought this was just the devs reflecting people being extra zealous or something, but it looks like it may be due to a very simple error: having add instead of factor when calculating weight.
For reference, here is what it looks like for assimilation:
modifier = { # Won't do if all state territories already have governor's culture or the dominant culture of the owner
factor = 0
any_state_province = {
count = all
OR = {
dominant_province_culture = governor_or_ruler.culture
owner = {
any_country_culture = {
is_integrated = yes
this.culture = prev.prev.culture
}
}
}
}
}
Simple enough, if everything is already assimilated, multiply the weight by zero so it never happens.
Then look at religious conversion:
modifier = { # Won't do if all state territories follow country religion
add = 0
any_state_province = {
count = all
dominant_province_religion = governor_or_ruler.religion
}
}
Same developer comment about not converting if everything is already converted, but instead of multiplying by zero as the comment states, instead zero is added. This means that instead of the chance of it being selected going to zero, the chance remains totally unaffected, and this whole code block does nothing. Pretty sure this is not supposed to work like that.
 
  • 4Like
  • 4
  • 1Love
  • 1
Reactions: