HoI 4 - Form European Union decision not visible as West Germany

  • We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

Masterbobli

Second Lieutenant
11 Badges
Feb 20, 2020
147
142
  • Cities: Skylines
  • Hearts of Iron IV: Cadet
  • Hearts of Iron IV: Colonel
  • Hearts of Iron IV: Death or Dishonor
  • Hearts of Iron IV: Expansion Pass
  • Cities: Skylines - Parklife
  • Hearts of Iron IV: Expansion Pass
  • Battle for Bosporus
  • Hearts of Iron IV: By Blood Alone
  • Hearts of Iron IV: No Step Back
  • Hearts of Iron IV: La Resistance
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
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
        }
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
 

Attachments

  • 截屏2022-01-14 15.41.47.png
    截屏2022-01-14 15.41.47.png
    3,4 MB · Views: 0
  • 2Like
Reactions:
Upvote 0