@@ -146,12 +146,12 @@ namespace OpenVic {
146146
147147 // The total/resultant modifier affecting this country, including owned province contributions.
148148 ModifierSum PROPERTY (modifier_sum);
149- memory::vector<ModifierInstance> PROPERTY (event_modifiers);
149+ memory::vector<ModifierInstance> SPAN_PROPERTY (event_modifiers);
150150
151151 /* Production */
152152 OV_STATE_PROPERTY (fixed_point_t , industrial_power);
153- memory::vector<std::pair<State const *, fixed_point_t >> PROPERTY (industrial_power_from_states);
154- memory::vector<std::pair<CountryInstance const *, fixed_point_t >> PROPERTY (industrial_power_from_investments);
153+ memory::vector<std::pair<State const *, fixed_point_t >> SPAN_PROPERTY (industrial_power_from_states);
154+ memory::vector<std::pair<CountryInstance const *, fixed_point_t >> SPAN_PROPERTY (industrial_power_from_investments);
155155 size_t PROPERTY (industrial_rank, 0 );
156156 fixed_point_map_t <CountryInstance const *> PROPERTY (foreign_investments);
157157 OV_IFLATMAP_PROPERTY (BuildingType, technology_unlock_level_t , building_type_unlock_levels);
@@ -390,7 +390,7 @@ namespace OpenVic {
390390 OV_IFLATMAP_PROPERTY (ShipType, technology_unlock_level_t , ship_type_unlock_levels);
391391 technology_unlock_level_t PROPERTY (gas_attack_unlock_level, 0 );
392392 technology_unlock_level_t PROPERTY (gas_defence_unlock_level, 0 );
393- memory::vector<technology_unlock_level_t > PROPERTY (unit_variant_unlock_levels);
393+ memory::vector<technology_unlock_level_t > SPAN_PROPERTY (unit_variant_unlock_levels);
394394
395395 public:
396396 // pointers instead of references to allow construction via std::tuple
0 commit comments