Skip to content

Commit

Permalink
Merge pull request #2388 from MegaMek/primitive_ds_thresholds
Browse files Browse the repository at this point in the history
Fix year thresholds for dropship engine and control multipliers.
  • Loading branch information
neoancient authored Nov 9, 2020
2 parents cb8b5e0 + fd6e9f5 commit eb9aee5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions megamek/src/megamek/common/verifier/TestSmallCraft.java
Original file line number Diff line number Diff line change
Expand Up @@ -291,9 +291,9 @@ public static double smallCraftControlMultiplier(int year) {
public static double dropshipEngineMultiplier(int year) {
if (year >= 2500) {
return 0.065;
} else if (year >= 2400) {
return 0.0715;
} else if (year >= 2351) {
return 0.0715;
} else if (year >= 2300) {
return 0.0845;
} else if (year >= 2251) {
return 0.091;
Expand All @@ -309,9 +309,9 @@ public static double dropshipEngineMultiplier(int year) {
public static double dropshipControlMultiplier(int year) {
if (year >= 2500) {
return 0.0075;
} else if (year >= 2400) {
return 0.009;
} else if (year >= 2351) {
return 0.009;
} else if (year >= 2300) {
return 0.00975;
} else if (year >= 2251) {
return 0.0105;
Expand Down

0 comments on commit eb9aee5

Please sign in to comment.