diff options
author | Hop311 <Hop3114@gmail.com> | 2023-08-10 12:59:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-10 12:59:31 +0200 |
commit | 538e7dc4ec44c4d09a6a654f10229e6392653a50 (patch) | |
tree | 42bc9cc4a0e33ff1f1a64ae5e23edc4a52ca4320 /src/openvic/economy/Good.cpp | |
parent | 8a08be3e7e8477973e243716d431ad7117acfa43 (diff) | |
parent | 170ee25469322d25931050813a779dfbc2eaa4b0 (diff) |
Merge pull request #10 from OpenVicProject/distributions
Added distributions for pop type and culture
Diffstat (limited to 'src/openvic/economy/Good.cpp')
-rw-r--r-- | src/openvic/economy/Good.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/openvic/economy/Good.cpp b/src/openvic/economy/Good.cpp index 4524e5f..27d6133 100644 --- a/src/openvic/economy/Good.cpp +++ b/src/openvic/economy/Good.cpp @@ -6,8 +6,7 @@ using namespace OpenVic; Good::Good(std::string const& new_identifier, std::string const& new_category, colour_t new_colour, price_t new_base_price, bool new_default_available, bool new_tradeable, bool new_currency, bool new_overseas_maintenance) - : HasIdentifier { new_identifier }, - HasColour { new_colour, true }, + : HasIdentifierAndColour { new_identifier, new_colour, true }, category { new_category }, base_price { new_base_price }, default_available { new_default_available }, |