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

Asheviere

Sergeant
Nov 23, 2021
66
673

Integrity​

I have verified my game files (on Steam)​

Yes

I have disabled all mods​

Yes

Required​

Summary​

Russia Fate of the Peasantry Mission & Head of the Patriarchate Reform bugs

Description​

First time bug reporting, I am sorry if I did something wrong in the post.

While playing as Russian and following its mission tree, I noticed two bugs:

Bug 1. Fate of the Peasantry Mission
After crushing the noble rebels and giving the 'The New Middle Class' Privilege, I was still unable to complete this mission (See image 1). I was forced to cheat and use console commands to set the correct flag (set_country_flag RUS rus_crushed_boyars_revolt) that I presume I should have gotten from crushing the rebels. If I had not, I wouldn't have been able to continue the mission tree past that point.

Bug 2. The 'Head of the Patriarchate' Government Reform is bugged. More specifically, I do not receive the Defender of the Faith bonus that the government reform should have given me (see Image 3), I assume this is because I was already Defender of the Faith, but I cannot be certain.

I can be fairly certain I am not the only one with these bugs since I saw others post about them, however they do not appear to be fixed in Winds of Change, nor does there appear to be a bug report about them.

Steps to reproduce​

Bug 1. I followed the path outlined in Image 2 until the Ascension of the Middle Class part, where I chose the option to get rid of the nobility.

Bug 2. Be defender of the faith, complete the mission, and use the goverment reform? I am not certain on how to reproduce it, or what causes it.

Game Version​

1.36.2

OS​

Windows

Additional​

Bug Type​

  • Other

Attachments​

bugreport1.pngbugreport2.pngbugreport3.pngView attachment Russian Empire.eu4View attachment Russian Empire_Backup.eu4

Screenshot​



 
Head of the Patriarchate also doesn't give you the expanded temple right bonus, even though it says it does if you hover over church building.
 

Attachments

  • Europa Universalis IV 2025-04-27 일 오후 3_10_03.png
    Europa Universalis IV 2025-04-27 일 오후 3_10_03.png
    3,9 MB · Views: 0
  • Europa Universalis IV 2025-04-27 일 오후 3_10_07.png
    Europa Universalis IV 2025-04-27 일 오후 3_10_07.png
    4 MB · Views: 0
  • Europa Universalis IV 2025-04-27 일 오후 3_10_16.png
    Europa Universalis IV 2025-04-27 일 오후 3_10_16.png
    3,8 MB · Views: 0
  • Europa Universalis IV 2025-04-27 일 오후 3_10_19.png
    Europa Universalis IV 2025-04-27 일 오후 3_10_19.png
    3,8 MB · Views: 0
Head of the Patriarchate also doesn't give you the expanded temple right bonus, even though it says it does if you hover over church building.
That's weird. I works for me. Do you maybe have mods?

Edit: I initially attached the wrong screenshot which showed the province of a different country. This one is my province in the test and it has the modifier:
1745746875135.png
 
That's weird. I works for me. Do you maybe have mods?

Edit: I initially attached the wrong screenshot which showed the province of a different country. This one is my province in the test and it has the modifier:
View attachment 1286234

This is the full list of mods I have enabled. They're all QoL mods that are ironman compatible, so I don't think it's due to any mod I have (playing non-ironman though).
1.png

I did tag switch from Gotland to Lubeck to Russia, and I also used console command once to trigger the 'proclaim the emperor title' decision for the second time in order to switch from Great Russian Federation to Russian Empire. Maybe something got tangled up in the process.

I also tried switching back to expanded temple rights reform, but it too doesn't give the corresponding bonus. Not sure what the issue is here.

I'll attach a save file just in case the devs decide to give the game one final bug fix.
 

Attachments

  • Russia1623_10_14.eu4
    61,8 MB · Views: 0
I had a look at your save. Some of your provinces have the modifier:
  • Opplanda(22)
  • Palermo(125)
  • Hamadan(414)
  • Tabriz(416)
  • Amol(426)
  • Teheran(428)
  • Isfahan(429)
  • Surgut(1069)
  • Obdorsk(1072)
  • Shetland(1978)
  • Zanjan(2212)
  • Qom(2213)
  • Golestan(2214)
  • Qazvin(2215)
  • Kashan(4335)
  • Savah(4337)
  • Sari(4341)

I looked at a few of them and they either got a church or were conquered by you in December 1619 or later.

I found a possible explanation for your problem. Did you maybe have the reform "Expand Temple Rights" before you switched to "Head of the Patriarchate" on the same tier? "Expand Temple Rights" gives the same modifier to churches and it removes the modifier if you lose the reform. Enacting "Head of the Patriarchate" gives the modifier to all provinces with churches. But it seems that this happens before the effect of losing "Expand Temple Rights" removes the modifier again.

The following patch should fix both issues with the reform:
Diff:
--- old/government_reforms/06_government_reforms_common.txt
+++ new/common/government_reforms/06_government_reforms_common.txt
@@ -1241,11 +1241,17 @@
        }
        post_removed_effect = {
                hidden_effect = {
-                       every_owned_province = {
+                       if = {
                                limit = {
-                                       has_province_modifier = gov_expanded_temple_rights_mod
+                                       # this check is needed so that the modifier doesn't get removed when switching to another reform with the same effect
+                                       NOT = { has_government_attribute = temples_modifier }
+                               }
+                               every_owned_province = {
+                                       limit = {
+                                               has_province_modifier = gov_expanded_temple_rights_mod
+                                       }
+                                       remove_province_modifier = gov_expanded_temple_rights_mod
                                }
-                               remove_province_modifier = gov_expanded_temple_rights_mod
                        }
                }
        }
@@ -1437,11 +1443,17 @@
        }
        post_removed_effect = {  2025-04-28 12:00:52.213215030 +0200
                hidden_effect = {
-                       every_owned_province = {
+                       if = {
                                limit = {
-                                       has_province_modifier = gov_expanded_temple_rights_mod
+                                       # this check is needed so that the modifier doesn't get removed when switching to another reform with the same effect
+                                       NOT = { has_government_attribute = temples_modifier }
+                               }
+                               every_owned_province = {
+                                       limit = {
+                                               has_province_modifier = gov_expanded_temple_rights_mod
+                                       }
+                                       remove_province_modifier = gov_expanded_temple_rights_mod
                                }
-                               remove_province_modifier = gov_expanded_temple_rights_mod
                        }
                }
        }
@@ -1517,17 +1529,31 @@
                                        duration = -1
                                }
                        }
+                       if = {
+                               limit = { is_defender_of_faith = yes }
+                               add_country_modifier = {
+                                       name = gov_improved_defender_of_faith_mod
+                                       duration = -1
+                               }
+                       }
                }
        }
        post_removed_effect = {
                hidden_effect = {
-                       every_owned_province = {
+                       if = {
                                limit = {
-                                       has_province_modifier = gov_expanded_temple_rights_mod
+                                       # this check is needed so that the modifier doesn't get removed when switching to another reform with the same effect
+                                       NOT = { has_government_attribute = temples_modifier }
+                               }
+                               every_owned_province = {
+                                       limit = {
+                                               has_province_modifier = gov_expanded_temple_rights_mod
+                                       }
+                                       remove_province_modifier = gov_expanded_temple_rights_mod
                                }
-                               remove_province_modifier = gov_expanded_temple_rights_mod
                        }
                }
+               remove_country_modifier = gov_improved_defender_of_faith_mod
        }
        ai = {
                factor = 1
 
  • 1
Reactions:
@grotaclas
Oh wow, thank you for the effort. Yes, I had Expanded Temple Rights before I took the new reform. I already fixed it by simply rebuilding churches in all of my provinces. I allow use of console command for these sort of things in my playthrough. Still, appreciate the help!