• 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.

QuinnMallory

Captain
13 Badges
Feb 19, 2019
485
1.008
  • Crusader Kings II
  • Darkest Hour
  • Majesty 2
  • Hearts of Iron IV: Cadet
  • Hearts of Iron IV: Together for Victory
  • Hearts of Iron IV: Death or Dishonor
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: La Resistance
  • Battle for Bosporus
  • Hearts of Iron IV: By Blood Alone
  • Hearts of Iron IV: No Step Back
  • Hearts of Iron 4: Arms Against Tyranny


Summary​

The "Petition for Return of Old Colonies" German focus has an incorrect requirements description

Platform​

Steam

Operating System​

Windows 10

Game Version​

1.16.9

Enabled DLC​

  • Man the Guns
  • La Résistance
  • Battle for the Bosporus
  • No Step Back
  • By Blood Alone
  • Arms Against Tyranny
  • Götterdämmerung

Do you have mods enabled?​

No

Description​

The "Petition for Return of Old Colonies" German focus says in its description that it requires that "[UK] Current ruling party is not Fascist". As the screenshots show, I was able to do the focus and complete the event with Britain's ruling party fascist.



Steps to Reproduce​

Play as Germany; set UK to go fascist. When they do, take "Petition for Return of Old Colonies".

Are you playing on a save from the previous/older version of the game​

No

Upload Attachment​

View attachment Disband army to get Dutch refusal.hoi420250715024601_1.jpg20250715024255_1.jpg20250715024304_1.jpg

 
the description is correct its just not coded properly :) .
the coding error is in available section of the focus, it is missing an OR statement , it is currently checking if England is simultaneously fascist and communist
available = {
has_added_tension_amount < 25
is_subject = no
NOT = {
has_wargoal_against = ENG
has_war_with = ENG
}
NOT = {
ENG = {
has_government = fascism
has_government = communism
}
}


it should be

available = {
has_added_tension_amount < 25
is_subject = no
NOT = {
has_wargoal_against = ENG
has_war_with = ENG
}
NOT = {
OR = {
ENG = { has_government = fascism }
ENG = { has_government = communism }
}
}

the Focus and event wuw_GER_weltpolitik.12 also have no checks with AST/SAF/NZL listed
 
Last edited: