From d732e81065e7f22413f138a8dad5858148f13bbd Mon Sep 17 00:00:00 2001 From: BiscuitCookies <25040791+BiscuitCookies@users.noreply.github.com> Date: Fri, 3 May 2024 11:40:52 +0200 Subject: [PATCH 01/16] added production stat modifier to equipment_bonus_type etc. --- Config/common/ideas.cwt | 3 +++ Config/common/mio_policies.cwt | 12 +++++++++--- Config/common/traits.cwt | 1 + 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/Config/common/ideas.cwt b/Config/common/ideas.cwt index fa5d975c..0d708887 100644 --- a/Config/common/ideas.cwt +++ b/Config/common/ideas.cwt @@ -82,6 +82,7 @@ idea = { alias_name[unit_stat] = alias_match_left[unit_stat] alias_name[naval_stat] = alias_match_left[naval_stat] alias_name[air_stat] = alias_match_left[air_stat] + enum[production_stat] = variable_field } } ## cardinality = 0..1 @@ -196,6 +197,7 @@ idea = { alias_name[unit_stat] = alias_match_left[unit_stat] alias_name[naval_stat] = alias_match_left[naval_stat] alias_name[air_stat] = alias_match_left[air_stat] + enum[production_stat] = variable_field } } ## cardinality = 0..1 @@ -318,6 +320,7 @@ idea = { alias_name[unit_stat] = alias_match_left[unit_stat] alias_name[naval_stat] = alias_match_left[naval_stat] alias_name[air_stat] = alias_match_left[air_stat] + enum[production_stat] = variable_field } } ## cardinality = 0..1 diff --git a/Config/common/mio_policies.cwt b/Config/common/mio_policies.cwt index 23a20fee..3bb37b99 100644 --- a/Config/common/mio_policies.cwt +++ b/Config/common/mio_policies.cwt @@ -54,19 +54,25 @@ mio_policy = { equipment_bonus = { ## cardinality = 0..inf enum[equipment_bonus_type] = { - ## cardinality = ~1..inf + ## cardinality = 0..inf enum[equipment_stat] = variable_field + ## cardinality = 0..inf + enum[production_stat] = variable_field } ## cardinality = 0..inf = { - ## cardinality = ~1..inf + ## cardinality = 0..inf enum[equipment_stat] = variable_field + ## cardinality = 0..inf + enum[production_stat] = variable_field } ### can use this keyword to apply to all equipments in departments of the attached MIO ## cardinality = 0..inf same_as_mio = { - ## cardinality = ~1..inf + ## cardinality = 0..inf enum[equipment_stat] = variable_field + ## cardinality = 0..inf + enum[production_stat] = variable_field } } diff --git a/Config/common/traits.cwt b/Config/common/traits.cwt index 7346b29f..ad2e5ebb 100644 --- a/Config/common/traits.cwt +++ b/Config/common/traits.cwt @@ -65,6 +65,7 @@ country_leader_trait = { alias_name[unit_stat] = alias_match_left[unit_stat] alias_name[naval_stat] = alias_match_left[naval_stat] alias_name[air_stat] = alias_match_left[air_stat] + enum[production_stat] = variable_field } } ## cardinality = 0..inf From e96e7a1e927453fee98c2beb8914331bc4894e1a Mon Sep 17 00:00:00 2001 From: BiscuitCookies <25040791+BiscuitCookies@users.noreply.github.com> Date: Fri, 3 May 2024 13:13:46 +0200 Subject: [PATCH 02/16] added operatives to the set_portaits type list --- Config/common/characters.cwt | 1 + 1 file changed, 1 insertion(+) diff --git a/Config/common/characters.cwt b/Config/common/characters.cwt index 6af35410..95c4b826 100644 --- a/Config/common/characters.cwt +++ b/Config/common/characters.cwt @@ -564,6 +564,7 @@ enums = { civilian army navy + operative } enum[character_portrait_sizes] = { large From 0ae8e33f3f3d4c97b4cb9153c925b2d1f503b650 Mon Sep 17 00:00:00 2001 From: BiscuitCookies <25040791+BiscuitCookies@users.noreply.github.com> Date: Fri, 3 May 2024 13:17:22 +0200 Subject: [PATCH 03/16] added cardinality to enum[production_stat] in country leader trait --- Config/common/traits.cwt | 1 + 1 file changed, 1 insertion(+) diff --git a/Config/common/traits.cwt b/Config/common/traits.cwt index ad2e5ebb..adc71079 100644 --- a/Config/common/traits.cwt +++ b/Config/common/traits.cwt @@ -65,6 +65,7 @@ country_leader_trait = { alias_name[unit_stat] = alias_match_left[unit_stat] alias_name[naval_stat] = alias_match_left[naval_stat] alias_name[air_stat] = alias_match_left[air_stat] + ## cardinality = 0..inf enum[production_stat] = variable_field } } From 1354453414f8efc1c7901d0022f3288ad48dbe7b Mon Sep 17 00:00:00 2001 From: BiscuitCookies <25040791+BiscuitCookies@users.noreply.github.com> Date: Fri, 3 May 2024 17:15:42 +0200 Subject: [PATCH 04/16] mistakes were made with production_stat only works for policies and mio traits --- Config/common/ideas.cwt | 3 --- Config/common/traits.cwt | 2 -- 2 files changed, 5 deletions(-) diff --git a/Config/common/ideas.cwt b/Config/common/ideas.cwt index 0d708887..fa5d975c 100644 --- a/Config/common/ideas.cwt +++ b/Config/common/ideas.cwt @@ -82,7 +82,6 @@ idea = { alias_name[unit_stat] = alias_match_left[unit_stat] alias_name[naval_stat] = alias_match_left[naval_stat] alias_name[air_stat] = alias_match_left[air_stat] - enum[production_stat] = variable_field } } ## cardinality = 0..1 @@ -197,7 +196,6 @@ idea = { alias_name[unit_stat] = alias_match_left[unit_stat] alias_name[naval_stat] = alias_match_left[naval_stat] alias_name[air_stat] = alias_match_left[air_stat] - enum[production_stat] = variable_field } } ## cardinality = 0..1 @@ -320,7 +318,6 @@ idea = { alias_name[unit_stat] = alias_match_left[unit_stat] alias_name[naval_stat] = alias_match_left[naval_stat] alias_name[air_stat] = alias_match_left[air_stat] - enum[production_stat] = variable_field } } ## cardinality = 0..1 diff --git a/Config/common/traits.cwt b/Config/common/traits.cwt index adc71079..7346b29f 100644 --- a/Config/common/traits.cwt +++ b/Config/common/traits.cwt @@ -65,8 +65,6 @@ country_leader_trait = { alias_name[unit_stat] = alias_match_left[unit_stat] alias_name[naval_stat] = alias_match_left[naval_stat] alias_name[air_stat] = alias_match_left[air_stat] - ## cardinality = 0..inf - enum[production_stat] = variable_field } } ## cardinality = 0..inf From 9cac5b1497afe9226cc683eeafbfe9583caa80b3 Mon Sep 17 00:00:00 2001 From: BiscuitCookies <25040791+BiscuitCookies@users.noreply.github.com> Date: Sat, 4 May 2024 19:31:32 +0200 Subject: [PATCH 05/16] added missing = for cardinality in entity effects --- Config/effects_nsb.cwt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Config/effects_nsb.cwt b/Config/effects_nsb.cwt index f4d960a6..f01de410 100644 --- a/Config/effects_nsb.cwt +++ b/Config/effects_nsb.cwt @@ -939,20 +939,20 @@ alias[effect:generate_character] = { ## scope = any alias[effect:create_entity] = { entity = - ## cardinality 0..1 + ## cardinality = 0..1 id = value_set[entity_id] - ## cardinality 0..1 + ## cardinality = 0..1 var = value_set[variable] x = float y = float - ## cardinality 0..1 + ## cardinality = 0..1 z = float province = enum[provinces] state = rotation = float scale = float min_zoom = float - ## cardinality 0..1 + ## cardinality = 0..1 visible = } @@ -970,7 +970,7 @@ alias[effect:set_entity_movement] = { start = { x = float y = float - ## cardinality 0..1 + ## cardinality = 0..1 z = float } target = { @@ -987,7 +987,7 @@ alias[effect:set_entity_position ] = { id = value[entity_id] x = float y = float - ## cardinality 0..1 + ## cardinality = 0..1 z = float province = enum state = From 3a0bea2b58de7952a46faa00559b61636b7d469c Mon Sep 17 00:00:00 2001 From: BiscuitCookies <25040791+BiscuitCookies@users.noreply.github.com> Date: Sat, 4 May 2024 19:43:10 +0200 Subject: [PATCH 06/16] support for multiple equipments for railway guns in the create_railway_gun effect --- Config/common/equipment.cwt | 3 +++ Config/effects_nsb.cwt | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Config/common/equipment.cwt b/Config/common/equipment.cwt index bb61d213..1f6c3426 100644 --- a/Config/common/equipment.cwt +++ b/Config/common/equipment.cwt @@ -62,6 +62,9 @@ types = { ### All parent module slots will directly inherited with no modifications. module_slots = inherit } + subtype[railway_gun] = { + archetype = railway_gun_equipment + } } type[upgrade] = { skip_root_key = upgrades diff --git a/Config/effects_nsb.cwt b/Config/effects_nsb.cwt index f01de410..7cc1cfcd 100644 --- a/Config/effects_nsb.cwt +++ b/Config/effects_nsb.cwt @@ -829,7 +829,7 @@ alias[effect:force_update_map_mode] = { ### Create railway gun effect ## scope = { any } alias[effect:create_railway_gun] = { - equipment = railway_gun_equipment_1 + equipment = ## cardinality = 0..1 name = localisation_inline ### optional, created in capital otherwise From d0dba79222585eeca711b9f6b2898b703724a070 Mon Sep 17 00:00:00 2001 From: BiscuitCookies <25040791+BiscuitCookies@users.noreply.github.com> Date: Sat, 4 May 2024 21:44:22 +0200 Subject: [PATCH 07/16] change back meta effects and trigger to ignore text --- Config/effects.cwt | 5 +---- Config/triggers.cwt | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/Config/effects.cwt b/Config/effects.cwt index 8f796677..c751ec75 100644 --- a/Config/effects.cwt +++ b/Config/effects.cwt @@ -3472,10 +3472,7 @@ alias[effect:while_loop_effect] = { ### Meta effects can be used for building effects from strings and running them. following example will give Germany 42 pp. ## scope = any alias[effect:meta_effect] = { - text = { - ## cardinality = 1..inf - alias_name[effect] = alias_match_left[effect] - } + text = ignore_field ## cardinality = 1..inf scalar = localisation } diff --git a/Config/triggers.cwt b/Config/triggers.cwt index 9fd0c186..50f9ca09 100644 --- a/Config/triggers.cwt +++ b/Config/triggers.cwt @@ -2173,10 +2173,7 @@ alias[trigger:casualties_k] = int ### Meta triggers can be used for building triggers from strings and running them. following example will test if Germany has 42 pp. ## scope = any alias[trigger:meta_trigger] = { - text = { - ## cardinality = 1..inf - alias_name[trigger] = alias_match_left[trigger] - } + text = ignore_field ## cardinality = 1..inf scalar = localisation } From 6f4a32c7896546ec1986fb34379a461a9f038995 Mon Sep 17 00:00:00 2001 From: BiscuitCookies <25040791+BiscuitCookies@users.noreply.github.com> Date: Sat, 4 May 2024 21:44:47 +0200 Subject: [PATCH 08/16] set_division_force_allow_recruiting optional force_allow_recruiting --- Config/effects.cwt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Config/effects.cwt b/Config/effects.cwt index c751ec75..dc385d7d 100644 --- a/Config/effects.cwt +++ b/Config/effects.cwt @@ -2835,10 +2835,11 @@ alias[effect:clear_division_template_cap] = { division_template = localisation_inline } -### Set division template to allow force recruiting. +### Set division template to allow force recruiting. force_allow_recruiting defaults to true if unset ## scope = country alias[effect:set_division_force_allow_recruiting] = { division_template = localisation_inline + ## cardinality = 0..1 force_allow_recruiting = bool } From 0ee91803b4089064e3c1c8a6bf0ed93c5d610c81 Mon Sep 17 00:00:00 2001 From: BiscuitCookies <25040791+BiscuitCookies@users.noreply.github.com> Date: Sat, 4 May 2024 21:44:57 +0200 Subject: [PATCH 09/16] added destroy_unit --- Config/effects_bba.cwt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Config/effects_bba.cwt b/Config/effects_bba.cwt index 47cf86b5..49139b61 100644 --- a/Config/effects_bba.cwt +++ b/Config/effects_bba.cwt @@ -162,3 +162,7 @@ alias[effect:remove_civil_war_target] = scope[country] ## scope = country alias[effect:remove_civil_war_target] = enum[country_tags] + +### Destroys the currently-scoped division. +## scope = unit +alias[effect:destroy_unit] = bool From db4ebd65b58fe8b079be213fa86467f4d4a8ec93 Mon Sep 17 00:00:00 2001 From: Pelmen323 Date: Mon, 6 May 2024 16:08:34 +0400 Subject: [PATCH 10/16] Add `on_force_government` on_action --- Config/on_actions.cwt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Config/on_actions.cwt b/Config/on_actions.cwt index f6cbebc0..363ef23b 100644 --- a/Config/on_actions.cwt +++ b/Config/on_actions.cwt @@ -154,6 +154,11 @@ types = { path = "game/common/on_actions" skip_root_key = on_actions } + ## type_key_filter = on_force_government + type[on_force_government] = { + path = "game/common/on_actions" + skip_root_key = on_actions + } ## type_key_filter = on_liberate type[on_liberate] = { path = "game/common/on_actions" @@ -703,6 +708,11 @@ on_action = { ## replace_scope = { THIS = country ROOT = country FROM = country } on_puppet = single_alias_right[country_event_effect] + ### Trigger the following commands whenever a country is forcing government change in a peace conference only. ROOT is the nation having the government changed, FROM is the overlord. + ## cardinality = 0..inf + ## replace_scope = { THIS = country ROOT = country FROM = country } + on_force_government = single_alias_right[country_event_effect] + ### Trigger the following commands whenever a country is liberated in a peace conference only. ROOT is the nation being liberated, FROM is the leader of the liberators. ## cardinality = 0..inf ## replace_scope = { THIS = country ROOT = country FROM = country } From 7341f2c2ee8086b09d29e9731c30dd4a5bd2f5e4 Mon Sep 17 00:00:00 2001 From: Pelmen323 Date: Tue, 11 Jun 2024 15:13:46 +0400 Subject: [PATCH 11/16] Update `create_equipment_variant` effect with `show_position` arg --- Config/effects.cwt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Config/effects.cwt b/Config/effects.cwt index dc385d7d..2e8cbff3 100644 --- a/Config/effects.cwt +++ b/Config/effects.cwt @@ -1808,6 +1808,8 @@ alias[effect:create_equipment_variant] = { ## cardinality = 0..1 allow_without_tech = bool ## cardinality = 0..1 + show_position = bool + ## cardinality = 0..1 upgrades = { ## cardinality = 0..inf = int From e94d3a72211e9521e37277cb2e6b52d38f827a5e Mon Sep 17 00:00:00 2001 From: Pelmen323 Date: Mon, 17 Jun 2024 17:56:17 +0400 Subject: [PATCH 12/16] Update `equipment_group` entities --- Config/common/equipment_groups.cwt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Config/common/equipment_groups.cwt b/Config/common/equipment_groups.cwt index 2b78803a..416b6e3a 100644 --- a/Config/common/equipment_groups.cwt +++ b/Config/common/equipment_groups.cwt @@ -14,5 +14,15 @@ equipment_group = { enum[equipment_bonus_type] ## cardinality = 0..inf + ## cardinality = 0..inf + enum[equipment_group_exceptions] } } + +enums = { + enum[equipment_group_exceptions] = { + modern_tank_amphibious_chassis + super_heavy_tank_flame_chassis + modern_tank_flame_chassis + } +} From 9ae1667b8b133d458e69559aa654c0d6446e0fea Mon Sep 17 00:00:00 2001 From: Pelmen323 Date: Mon, 17 Jun 2024 18:37:16 +0400 Subject: [PATCH 13/16] Fix gui errors if child containerWindowType is used as parent_window_name argument --- Config/common/scripted_guis.cwt | 3 +++ Config/interface/gui.cwt | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Config/common/scripted_guis.cwt b/Config/common/scripted_guis.cwt index 5d31a1dc..baf17676 100644 --- a/Config/common/scripted_guis.cwt +++ b/Config/common/scripted_guis.cwt @@ -61,6 +61,9 @@ scripted_gui = { ## cardinality = 0..1 ### Any GUI container name. Use only if parent_window_token doesn't have a corresponding token. parent_window_name = _instance + ## cardinality = 0..1 + ### Any GUI container name. Use only if parent_window_token doesn't have a corresponding token. + parent_window_name = value[containerWindowTypeChild] ## cardinality = 0..inf ### By default the scripted guis will update the gui with every gameplay change (every hourly tick. every time you click something that affects game etc). For large scripted guis this can become quite heavy. If you scripted gui is not updated regularly and you know when it will needs an update, you can use the dirty variable feature. dirty = var_name Once this is defined, the game will check if the value of variable named "var_name" is updated or not. It will only update the scripted gui if that value is changed. It will read the variable from the scope of the scripted gui (player scope or targeted scope etc). When you call an effect that will change the contents of a scripted gui, you can also call `add_to_variable = { var_name = 1 }` to change that dirty variable to retrigger and update on the interface dirty = value_set[variable] diff --git a/Config/interface/gui.cwt b/Config/interface/gui.cwt index ee435540..7fcaa8af 100644 --- a/Config/interface/gui.cwt +++ b/Config/interface/gui.cwt @@ -59,7 +59,7 @@ containerWindowType = { } ###Container Window alias[gui:containerWindowType] = { - name = scalar + name = value_set[containerWindowTypeChild] ## cardinality = 0..1 ### Mouse Draggable moveable = bool From d9ccc247640b64e84bb163c0a82aebc2c9d81a8e Mon Sep 17 00:00:00 2001 From: Pelmen323 Date: Mon, 17 Jun 2024 21:08:24 +0400 Subject: [PATCH 14/16] Add the ability to assign gfx to char name --- Config/effects_nsb.cwt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Config/effects_nsb.cwt b/Config/effects_nsb.cwt index 7cc1cfcd..775b3918 100644 --- a/Config/effects_nsb.cwt +++ b/Config/effects_nsb.cwt @@ -491,6 +491,9 @@ alias[effect:retire_character] = scope[character] ## scope = { character unit_leader } alias[effect:set_character_name] = localisation ### renames character +## scope = { character unit_leader } +alias[effect:set_character_name] = +### renames character ## scope = { country character unit_leader } alias[effect:set_character_name] = { ## cardinality = 0..1 From 845eb66d216f515ad91bedc0869421ab3388fc69 Mon Sep 17 00:00:00 2001 From: Pelmen323 Date: Mon, 17 Jun 2024 21:09:24 +0400 Subject: [PATCH 15/16] Change 'doctrine_name' arg of technologies to scalar --- Config/common/technologies.cwt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Config/common/technologies.cwt b/Config/common/technologies.cwt index 458419c0..9cd79d5d 100644 --- a/Config/common/technologies.cwt +++ b/Config/common/technologies.cwt @@ -27,7 +27,7 @@ types = { ## replace_scope = { this = country root = country } technology = { ## cardinality = 0..1 - doctrine_name = localisation + doctrine_name = scalar ## cardinality = 0..1 show_equipment_icon = bool From 8292776c19f75b027e5694f2d3113ae8b49a6a70 Mon Sep 17 00:00:00 2001 From: Pelmen323 Date: Mon, 17 Jun 2024 21:38:30 +0400 Subject: [PATCH 16/16] Attempt to add "integrated_dlc" folder support --- Config/folders.cwt | 3 ++- Config/gfx/graphic_db.cwt | 6 +++--- Config/gfx/model_entities.cwt | 18 +++++++++--------- Config/interface/gfx.cwt | 6 +++--- 4 files changed, 17 insertions(+), 16 deletions(-) diff --git a/Config/folders.cwt b/Config/folders.cwt index d0c6f576..03b6eb4d 100644 --- a/Config/folders.cwt +++ b/Config/folders.cwt @@ -6,4 +6,5 @@ interface localisation portraits map -dlc \ No newline at end of file +dlc +integrated_dlc \ No newline at end of file diff --git a/Config/gfx/graphic_db.cwt b/Config/gfx/graphic_db.cwt index fa0d5872..31d4454b 100644 --- a/Config/gfx/graphic_db.cwt +++ b/Config/gfx/graphic_db.cwt @@ -77,19 +77,19 @@ graphic_db = { filepath[dlc/dlc017_original_soundtrack/] ## cardinality = 0..inf ## severity = hint - filepath[dlc/dlc018_together_for_victory/] + filepath[integrated_dlc/dlc018_together_for_victory/] ## cardinality = 0..inf ## severity = hint filepath[dlc/dlc019_sabaton_vol2/] ## cardinality = 0..inf ## severity = hint - filepath[dlc/dlc020_death_or_dishonor/] + filepath[integrated_dlc/dlc020_death_or_dishonor/] ## cardinality = 0..inf ## severity = hint filepath[dlc/dlc021_anniversary_pack/] ## cardinality = 0..inf ## severity = hint - filepath[dlc/dlc022_waking_the_tiger/] + filepath[integrated_dlc/dlc022_waking_the_tiger/] ## cardinality = 0..inf ## severity = hint filepath[dlc/dlc023_man_the_guns/] diff --git a/Config/gfx/model_entities.cwt b/Config/gfx/model_entities.cwt index 1830a7c2..6ebcf7de 100644 --- a/Config/gfx/model_entities.cwt +++ b/Config/gfx/model_entities.cwt @@ -19,11 +19,11 @@ types = { path = "dlc/dlc014_wallpaper/gfx" path = "dlc/dlc016_artbook/gfx" path = "dlc/dlc017_original_soundtrack/gfx" - path = "dlc/dlc018_together_for_victory/gfx" + path = "integrated_dlc/dlc018_together_for_victory/gfx" path = "dlc/dlc019_sabaton_vol2/gfx" - path = "dlc/dlc020_death_or_dishonor/gfx" + path = "integrated_dlc/dlc020_death_or_dishonor/gfx" path = "dlc/dlc021_anniversary_pack/gfx" - path = "dlc/dlc022_waking_the_tiger/gfx" + path = "integrated_dlc/dlc022_waking_the_tiger/gfx" path = "dlc/dlc023_man_the_guns/gfx" path = "dlc/dlc024_man_the_guns_wallpaper/gfx" path = "dlc/dlc025_axis_armor_pack/gfx" @@ -64,11 +64,11 @@ types = { path = "dlc/dlc014_wallpaper/gfx" path = "dlc/dlc016_artbook/gfx" path = "dlc/dlc017_original_soundtrack/gfx" - path = "dlc/dlc018_together_for_victory/gfx" + path = "integrated_dlc/dlc018_together_for_victory/gfx" path = "dlc/dlc019_sabaton_vol2/gfx" - path = "dlc/dlc020_death_or_dishonor/gfx" + path = "integrated_dlc/dlc020_death_or_dishonor/gfx" path = "dlc/dlc021_anniversary_pack/gfx" - path = "dlc/dlc022_waking_the_tiger/gfx" + path = "integrated_dlc/dlc022_waking_the_tiger/gfx" path = "dlc/dlc023_man_the_guns/gfx" path = "dlc/dlc024_man_the_guns_wallpaper/gfx" path = "dlc/dlc025_axis_armor_pack/gfx" @@ -109,11 +109,11 @@ types = { path = "dlc/dlc014_wallpaper/gfx" path = "dlc/dlc016_artbook/gfx" path = "dlc/dlc017_original_soundtrack/gfx" - path = "dlc/dlc018_together_for_victory/gfx" + path = "integrated_dlc/dlc018_together_for_victory/gfx" path = "dlc/dlc019_sabaton_vol2/gfx" - path = "dlc/dlc020_death_or_dishonor/gfx" + path = "integrated_dlc/dlc020_death_or_dishonor/gfx" path = "dlc/dlc021_anniversary_pack/gfx" - path = "dlc/dlc022_waking_the_tiger/gfx" + path = "integrated_dlc/dlc022_waking_the_tiger/gfx" path = "dlc/dlc023_man_the_guns/gfx" path = "dlc/dlc024_man_the_guns_wallpaper/gfx" path = "dlc/dlc025_axis_armor_pack/gfx" diff --git a/Config/interface/gfx.cwt b/Config/interface/gfx.cwt index 86250511..8a8c5ee7 100644 --- a/Config/interface/gfx.cwt +++ b/Config/interface/gfx.cwt @@ -17,11 +17,11 @@ types = { path = "dlc/dlc014_wallpaper/interface" path = "dlc/dlc016_artbook/interface" path = "dlc/dlc017_original_soundtrack/interface" - path = "dlc/dlc018_together_for_victory/interface" + path = "integrated_dlc/dlc018_together_for_victory/interface" path = "dlc/dlc019_sabaton_vol2/interface" - path = "dlc/dlc020_death_or_dishonor/interface" + path = "integrated_dlc/dlc020_death_or_dishonor/interface" path = "dlc/dlc021_anniversary_pack/interface" - path = "dlc/dlc022_waking_the_tiger/interface" + path = "integrated_dlc/dlc022_waking_the_tiger/interface" path = "dlc/dlc023_man_the_guns/interface" path = "dlc/dlc024_man_the_guns_wallpaper/interface" path = "dlc/dlc025_axis_armor_pack/interface"