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

BeniT3

Recruit
7 Badges
Jul 6, 2020
7
7
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Common Sense
  • Hearts of Iron IV Sign-up
  • Surviving Mars
  • Crusader Kings II
  • Europa Universalis IV
  • Crusader Kings II: The Old Gods

Integrity​

I have verified my game files (on Steam)​

Yes

I have disabled all mods​

Yes

Required​

Summary​

Reform byzantine empire decision doesn't check for "byzantine culture group" anymore

Description​

after byzantium falls/gets annexed, every orthodox nation gets the decision to reform them,without restriction to culture.
For some reason the culture check code part, included in one of the screenshots doesn't work.(this is in the "RestoreByzantineEmpire.txt" file)

Steps to reproduce​

Start a game, either wait for ottomans to annex byzantium or annex them as any nation via console

Game Version​

1.36.0.0

OS​

Windows

Additional​

Bug Type​

  • Other

Attachments​

Screenshot 2023-11-11 050633.pngScreenshot 2023-11-11 051134.png

Screenshot​

Screenshot 2023-11-11 050633.png

 
Last edited:
Hello there! We are now reviewing this issue. We will let you know if we require any more information!
The issue occurs because the code statement:
Code:
OR = {
    culture_group = byzantine
    not = { primary_culture = goths }
    AND = {
        has_idea = MFA_byzantine_claimants
        dynasty = "Palaiologos"
    }
}

states that in order for the condition to be true, one of the following must occur:
1) the country is in the byzantine culture group
2) the primary culture of the country is NOT gothic
3) the country has the idea MFA_byzantine_claimants AND the country's ruling dynasty is Palaiologos.

the issue occurs with statement 2, since this will return true for every country in the world that does not have gothic culture, allowing non-greek countries to see the decision. The fix is actually quite simple though:
Code:
OR = {
    AND = {
        culture_group = byzantine
        not = { primary_culture = goths }
    }
    AND = {
        has_idea = MFA_byzantine_claimants
        dynasty = "Palaiologos"
    }
}