From 4d34b663f0319a5964d99739acc6739a65c37730 Mon Sep 17 00:00:00 2001 From: kratostatic Date: Fri, 4 Aug 2017 22:08:14 +0100 Subject: [PATCH] Correctly read the abolish slavery act --- EU4toV2/Source/V2World/V2Reforms.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EU4toV2/Source/V2World/V2Reforms.cpp b/EU4toV2/Source/V2World/V2Reforms.cpp index 86be6c995..ca7237ce3 100644 --- a/EU4toV2/Source/V2World/V2Reforms.cpp +++ b/EU4toV2/Source/V2World/V2Reforms.cpp @@ -44,7 +44,7 @@ V2Reforms::V2Reforms(const V2Country* dstCountry, const EU4Country* srcCountry) upperHouseEffects(dstCountry); governmentEffects(dstCountry); - if (srcCountry->hasModifier("the_abolish_slavery_act")) + if ((srcCountry->hasModifier("the_abolish_slavery_act")) || (srcCountry->hasModifier("abolish_slavery_act"))) { slavery += 1; }