From 288c42f99bff6d6f2680eab47813475de1b6c2e4 Mon Sep 17 00:00:00 2001 From: Richimundus5 Date: Mon, 6 Jan 2025 11:59:34 -0500 Subject: [PATCH] Changes old polish elective monarchy to base elective monarchy (#524) Changes elective_monarchy to elective_monarchy_reform, changes Byzantium to actually have Byzantine govt. --- CK2ToEU4/Source/EU4World/Country/Country.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CK2ToEU4/Source/EU4World/Country/Country.cpp b/CK2ToEU4/Source/EU4World/Country/Country.cpp index 2c1ef1e1..4ff50fba 100644 --- a/CK2ToEU4/Source/EU4World/Country/Country.cpp +++ b/CK2ToEU4/Source/EU4World/Country/Country.cpp @@ -1076,18 +1076,18 @@ void EU4::Country::assignReforms(const std::shared_ptr& r if (title.second->getSuccessionLaw() == "feudal_elective" && tag != "ROM" && tag != "HRE" && tag != "BYZ") { details.reforms.clear(); - details.reforms = {"elective_monarchy"}; + details.reforms = {"elective_monarchy_reform"}; } // Weird Edge Cases else if (title.second->getSuccessionLaw() == "byzantine_elective" && (title.first.find("e_roman_empire") || title.first.find("e_byzantium"))) { details.reforms.clear(); - details.reforms = {"autocracy_reform"}; + details.reforms = {"byzantine_autocracy_reform"}; } else if (title.second->getSuccessionLaw() == "byzantine_elective" && !title.first.find("e_")) { details.reforms.clear(); - details.reforms = {"feudalism_reform"}; + details.reforms = {"autocracy_reform"}; } else if (title.second->getSuccessionLaw() == "open_elective") // Should only be applicable to Mercenary Companies {