diff options
author | Hop311 <Hop3114@gmail.com> | 2023-12-08 00:23:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-08 00:23:09 +0100 |
commit | abb0804b015d8444542af7a6c5db728c0fde4cfb (patch) | |
tree | 6789bacb931ccfd7c7dc9de9e22a17b78b725d09 /src/openvic-simulation/map/Province.cpp | |
parent | 085fe94212c6f0ddbdfca1b2ba58223e7f6dcc8a (diff) | |
parent | 4320b37f7258c7e1f2585d67509045b5c9d6de06 (diff) |
Merge pull request #86 from OpenVicProject/meta-state-fix
Meta regions being used to make states fix
Diffstat (limited to 'src/openvic-simulation/map/Province.cpp')
-rw-r--r-- | src/openvic-simulation/map/Province.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openvic-simulation/map/Province.cpp b/src/openvic-simulation/map/Province.cpp index 1f9ca99..363be6c 100644 --- a/src/openvic-simulation/map/Province.cpp +++ b/src/openvic-simulation/map/Province.cpp @@ -9,7 +9,7 @@ Province::Province( std::string_view new_identifier, colour_t new_colour, index_t new_index ) : HasIdentifierAndColour { new_identifier, new_colour, true, false }, index { new_index }, region { nullptr }, on_map { false }, has_region { false }, water { false }, default_terrain_type { nullptr }, - terrain_type { nullptr }, life_rating { 0 }, colony_status { colony_status_t::STATE }, owner { nullptr }, + positions {}, terrain_type { nullptr }, life_rating { 0 }, colony_status { colony_status_t::STATE }, owner { nullptr }, controller { nullptr }, slave { false }, crime { nullptr }, rgo { nullptr }, buildings { "buildings", false }, total_population { 0 } { assert(index != NULL_INDEX); |