diff options
author | Hop311 <hop3114@gmail.com> | 2023-09-15 22:55:00 +0200 |
---|---|---|
committer | Hop311 <hop3114@gmail.com> | 2023-09-15 23:22:03 +0200 |
commit | 8add7c666455a8a4edd9e02ca5a33f78a25e8f2c (patch) | |
tree | 65b1f27aecea054bc708d2ee0d6eb4ae981b3fc3 /src/openvic-simulation/economy | |
parent | 46bbbb038e5fa21e25fa33c4fee84e4b14690885 (diff) |
First go at Modifiers
Diffstat (limited to 'src/openvic-simulation/economy')
-rw-r--r-- | src/openvic-simulation/economy/Good.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openvic-simulation/economy/Good.cpp b/src/openvic-simulation/economy/Good.cpp index e3dbd3e..6edf631 100644 --- a/src/openvic-simulation/economy/Good.cpp +++ b/src/openvic-simulation/economy/Good.cpp @@ -9,7 +9,7 @@ GoodCategory::GoodCategory(const std::string_view new_identifier) : HasIdentifie Good::Good(const std::string_view new_identifier, colour_t new_colour, GoodCategory const& new_category, price_t new_base_price, bool new_available_from_start, bool new_tradeable, bool new_money, bool new_overseas_penalty) - : HasIdentifierAndColour { new_identifier, new_colour, true }, + : HasIdentifierAndColour { new_identifier, new_colour, true, false }, category { new_category }, base_price { new_base_price }, available_from_start { new_available_from_start }, |