Skip to content

Commit

Permalink
Update src/game.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
GalacticApple and github-actions[bot] authored May 26, 2024
1 parent 6ff7e20 commit ebeb594
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3640,11 +3640,11 @@ bool game::verify_dynamic_power( std::string dyn )
return false;
}
} else if( dyn[i] == '3' ) { //Did the Old Guard manage to find enough allies?
if( faction_manager_ptr->get( faction_id( "old_guard" ) )->power < 150
|| faction_manager_ptr->get( faction_id( "robofac" ) )->power < 150
|| faction_manager_ptr->get( faction_id( "tacoma_commune" ) )->power < 150
|| faction_manager_ptr->get( faction_id( "the_great_library" ) )->power < 150
|| faction_manager_ptr->get( faction_id( "exodii") )->power < 150 ) {
if( faction_manager_ptr->get( faction_id( "old_guard" ) )->power < 150
|| faction_manager_ptr->get( faction_id( "robofac" ) )->power < 150
|| faction_manager_ptr->get( faction_id( "tacoma_commune" ) )->power < 150
|| faction_manager_ptr->get( faction_id( "the_great_library" ) )->power < 150
|| faction_manager_ptr->get( faction_id( "exodii" ) )->power < 150 ) {
return false; //If they didn't, then this doesn't apply
}
} else if(dyn[i] == '4') { //Did the Old Guard fail to find enough powerful allies?
Expand Down

0 comments on commit ebeb594

Please sign in to comment.