Description of issue
Form European Union decision not visible as West Germany
Game Version
1.11.5.2571(8d69)
Enabled DLC
Do you have mods enabled?
No
Description
According to the game code, the tag West Germany (WGR) is allowed to have the decision to form the European Union, however, the trigger that makes the decision visible will always be evaluated false for West Germany.
Here's the allowed section of the code
Obviously, West Germany is included as one of the tags that can form West Germany.
However, in the visible section of the code,
There is no mentioning of West Germany. Since the country doesn't satisfy the first OR condition, the decision to form EU is not visible.
Steps to Reproduce
1. Use the console command to spawn West Germany
2. Create a faction (so that the game recognizes the country as major)
3. See error. (Even if the country is democratic, the decision to form EU is not visible)
Upload Attachment
File(s) attached
Form European Union decision not visible as West Germany
Game Version
1.11.5.2571(8d69)
Enabled DLC
Do you have mods enabled?
No
Description
According to the game code, the tag West Germany (WGR) is allowed to have the decision to form the European Union, however, the trigger that makes the decision visible will always be evaluated false for West Germany.
Here's the allowed section of the code
Code:
allowed = {
OR = {
original_tag = HOL
original_tag = BEL
original_tag = LUX
original_tag = FRA
original_tag = ITA
original_tag = GER
original_tag = WGR
original_tag = ENG
}
OR = {
has_dlc = "Waking the Tiger"
has_dlc = "Man the Guns"
}
}
Obviously, West Germany is included as one of the tags that can form West Germany.
However, in the visible section of the code,
Code:
visible = {
OR = {
AND = {
OR = {
original_tag = HOL
original_tag = BEL
original_tag = LUX
original_tag = FRA
original_tag = ITA
original_tag = GER
}
has_government = democratic
}
AND = {
original_tag = ENG
has_country_leader = {
character = ENG_oswald_mosley
ruling_only = yes
}
has_completed_focus = ENG_imperial_federation
}
}
NOT = { has_global_flag = form_european_union_flag }
is_major = yes
}
Steps to Reproduce
1. Use the console command to spawn West Germany
2. Create a faction (so that the game recognizes the country as major)
3. See error. (Even if the country is democratic, the decision to form EU is not visible)
Upload Attachment
File(s) attached
Attachments
- 2
Upvote
0