Skip to content
This repository has been archived by the owner on Mar 29, 2020. It is now read-only.

Commit

Permalink
Corrected generic focus trees also for HoI4 V1.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hamiller78 committed Feb 7, 2017
1 parent f4306ee commit 26b4815
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Vic2ToHoI4/Source/HOI4World/HoI4FocusTree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3368,8 +3368,7 @@ void HoI4FocusTree::addVersion1_3GenericFocusTree()
newFocus = new HoI4Focus;
newFocus->id = "ideological_fanaticism";
newFocus->icon = "GFX_goal_generic_demand_territory";
newFocus->prerequisites.push_back("focus = paramilitarism");
newFocus->prerequisites.push_back("focus = political_commissars");
newFocus->prerequisites.push_back("focus = paramilitarism focus = political_commissars");
newFocus->xPos = 17;
newFocus->yPos = 6;
newFocus->cost = 10;
Expand All @@ -3387,8 +3386,7 @@ void HoI4FocusTree::addVersion1_3GenericFocusTree()
newFocus = new HoI4Focus;
newFocus->id = "technology_sharing";
newFocus->icon = "GFX_goal_generic_scientific_exchange";
newFocus->prerequisites.push_back("focus = ideological_fanaticism");
newFocus->prerequisites.push_back("focus = why_we_fight");
newFocus->prerequisites.push_back("focus = ideological_fanaticism focus = why_we_fight");
newFocus->available += " has_war = yes\n";
newFocus->available += " is_in_faction = yes\n";
newFocus->available += " OR = {\n";
Expand Down

0 comments on commit 26b4815

Please sign in to comment.