diff options
author | zaaarf <me@zaaarf.foo> | 2024-09-27 14:57:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-27 14:57:38 +0200 |
commit | 9a84e7af70f2528578b00879e568bca285563e9b (patch) | |
tree | fbb752ea8c4bba4448dddcb87e5541df89f684fc /src/openvic-simulation/history/CountryHistory.hpp | |
parent | 7e895eaea194e266b112cb507b0d643083f2ad4b (diff) | |
parent | 45ea5382921f71bd247f57210937c3d384d46cdf (diff) |
Merge pull request #207 from OpenVicProject/remove-culture
Added support for remove_culture custom instruction
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); |