aboutsummaryrefslogtreecommitdiff
path: root/src/openvic/map
diff options
context:
space:
mode:
author Hop311 <hop3114@gmail.com>2023-07-23 01:29:13 +0200
committer Hop311 <hop3114@gmail.com>2023-07-23 01:29:13 +0200
commit0422f9fbb06e911a7cf6da11045b47cdda0d2d06 (patch)
treec3aa6375f636ba2ffb3f35885b19ae3db51bf12d /src/openvic/map
parent83e61b518788d21283cda481decafee4ee2e252c (diff)
Culture data structs
Diffstat (limited to 'src/openvic/map')
-rw-r--r--src/openvic/map/Province.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openvic/map/Province.cpp b/src/openvic/map/Province.cpp
index d2a5ecf..06f1c98 100644
--- a/src/openvic/map/Province.cpp
+++ b/src/openvic/map/Province.cpp
@@ -8,7 +8,7 @@ using namespace OpenVic;
Province::Province(index_t new_index, std::string const& new_identifier, colour_t new_colour)
: HasIdentifier { new_identifier },
- HasColour { new_colour },
+ HasColour { new_colour, false },
index { new_index },
buildings { "buildings" } {
assert(index != NULL_INDEX);