@@ -706,23 +706,18 @@ private void setContractClauses(AtBContract contract, int unitRatingMod, Campaig
706
706
Faction employerFaction = contract .getEmployerFaction ();
707
707
708
708
if (employerFaction .isISMajorOrSuperPower ()) {
709
- mods .mods [CLAUSE_SALVAGE ] += - 1 ;
709
+ mods .mods [CLAUSE_SALVAGE ] -= 1 ;
710
710
mods .mods [CLAUSE_TRANSPORT ] += 1 ;
711
- }
712
- if (employerFaction .isMinorPower ()) {
713
- mods .mods [CLAUSE_SALVAGE ] += -2 ;
714
- }
715
- if (employerFaction .isMercenary ()) {
716
- mods .mods [CLAUSE_COMMAND ] += -1 ;
711
+ } else if (employerFaction .isMinorPower ()) {
712
+ mods .mods [CLAUSE_SALVAGE ] -= 2 ;
713
+ } else if (employerFaction .isMercenary ()) {
714
+ mods .mods [CLAUSE_COMMAND ] -= 1 ;
717
715
mods .mods [CLAUSE_SALVAGE ] += 2 ;
718
716
mods .mods [CLAUSE_SUPPORT ] += 1 ;
719
717
mods .mods [CLAUSE_TRANSPORT ] += 1 ;
720
- }
721
- if (employerFaction .equals ("IND" )) {
722
- mods .mods [CLAUSE_COMMAND ] += 0 ;
723
- mods .mods [CLAUSE_SALVAGE ] += -1 ;
724
- mods .mods [CLAUSE_SUPPORT ] += -1 ;
725
- mods .mods [CLAUSE_TRANSPORT ] += 0 ;
718
+ } else if (employerFaction .getShortName ().equals ("IND" )) {
719
+ mods .mods [CLAUSE_SALVAGE ] -= 1 ;
720
+ mods .mods [CLAUSE_SUPPORT ] -= 1 ;
726
721
}
727
722
728
723
int modifier = getEmployerNegotiatorModifier (employerFaction );
0 commit comments