diff options
author | zaaarf <me@zaaarf.foo> | 2024-09-27 12:10:59 +0200 |
---|---|---|
committer | zaaarf <me@zaaarf.foo> | 2024-09-27 12:10:59 +0200 |
commit | 45ea5382921f71bd247f57210937c3d384d46cdf (patch) | |
tree | fbb752ea8c4bba4448dddcb87e5541df89f684fc /src/openvic-simulation/history/CountryHistory.hpp | |
parent | 7e895eaea194e266b112cb507b0d643083f2ad4b (diff) |
Added support for remove_culture custom instructionremove-culture
Diffstat (limited to 'src/openvic-simulation/history/CountryHistory.hpp')
-rw-r--r-- | src/openvic-simulation/history/CountryHistory.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openvic-simulation/history/CountryHistory.hpp b/src/openvic-simulation/history/CountryHistory.hpp index 04de653..7ee9d6b 100644 --- a/src/openvic-simulation/history/CountryHistory.hpp +++ b/src/openvic-simulation/history/CountryHistory.hpp @@ -33,7 +33,7 @@ namespace OpenVic { CountryDefinition const& PROPERTY(country); std::optional<Culture const*> PROPERTY(primary_culture); - ordered_set<Culture const*> PROPERTY(accepted_cultures); + ordered_map<Culture const*, bool> PROPERTY(accepted_cultures); std::optional<Religion const*> PROPERTY(religion); std::optional<CountryParty const*> PROPERTY(ruling_party); std::optional<Date> PROPERTY(last_election); |