Import builds with military slots

This commit is contained in:
Cmdr McDonald
2017-01-10 19:12:19 +00:00
parent 7855d0e171
commit 06f4abdf8b
2 changed files with 19 additions and 7 deletions

View File

@@ -1164,7 +1164,9 @@ export default class Ship {
}
// We apply diminishing returns to the boosted value
shieldBoost = Math.min(shieldBoost, (1 - Math.pow(Math.E, -0.7 * shieldBoost)) * 2.5);
// (no we don't; FD pulled back on this idea. But leave this here in case they reinstate it)
// shieldBoost = Math.min(shieldBoost, (1 - Math.pow(Math.E, -0.7 * shieldBoost)) * 2.5);
shield = shield * shieldBoost;
this.shield = shield;