diff options
author | zaaarf <80046572+zaaarf@users.noreply.github.com> | 2023-12-10 01:48:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-10 01:48:54 +0100 |
commit | b3d0af96e5820e38f94bcfa04130768da99c8360 (patch) | |
tree | 08ab46ed8401179c0d29a4e6a26f21c04c34cf6e /src/openvic-simulation/research/Invention.hpp | |
parent | abb0804b015d8444542af7a6c5db728c0fde4cfb (diff) | |
parent | 2c562ac2d29942844f0aa4c44339ddd88489db8a (diff) |
Merge pull request #87 from OpenVicProject/dataloading-country-history-2
Dataloading Country History - Part 2
Diffstat (limited to 'src/openvic-simulation/research/Invention.hpp')
-rw-r--r-- | src/openvic-simulation/research/Invention.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/openvic-simulation/research/Invention.hpp b/src/openvic-simulation/research/Invention.hpp index 9cc158c..dc4256e 100644 --- a/src/openvic-simulation/research/Invention.hpp +++ b/src/openvic-simulation/research/Invention.hpp @@ -15,9 +15,9 @@ namespace OpenVic { struct Invention : Modifier { friend struct InventionManager; //TODO implement limit and chance - using unit_set_t = std::unordered_set<Unit const*>; - using building_set_t = std::unordered_set<BuildingType const*>; - using crime_set_t = std::unordered_set<Crime const*>; + using unit_set_t = std::set<Unit const*>; + using building_set_t = std::set<BuildingType const*>; + using crime_set_t = std::set<Crime const*>; private: const bool PROPERTY_CUSTOM_PREFIX(news, is); |