eve-fit-engine 0.1.9 → 0.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -675,7 +675,6 @@ var FitContext = class {
675
675
  const skillID = modifier.skillTypeID;
676
676
  const out = [];
677
677
  for (const m of this.modules) {
678
- if (itemRequiresSkill(m, skillID)) out.push(m);
679
678
  if (m.charge && itemRequiresSkill(m.charge, skillID)) out.push(m.charge);
680
679
  }
681
680
  for (const d of this.drones) if (itemRequiresSkill(d, skillID)) out.push(d);
package/dist/index.js CHANGED
@@ -673,7 +673,6 @@ var FitContext = class {
673
673
  const skillID = modifier.skillTypeID;
674
674
  const out = [];
675
675
  for (const m of this.modules) {
676
- if (itemRequiresSkill(m, skillID)) out.push(m);
677
676
  if (m.charge && itemRequiresSkill(m.charge, skillID)) out.push(m.charge);
678
677
  }
679
678
  for (const d of this.drones) if (itemRequiresSkill(d, skillID)) out.push(d);
package/dist/node.cjs CHANGED
@@ -703,7 +703,6 @@ var FitContext = class {
703
703
  const skillID = modifier.skillTypeID;
704
704
  const out = [];
705
705
  for (const m of this.modules) {
706
- if (itemRequiresSkill(m, skillID)) out.push(m);
707
706
  if (m.charge && itemRequiresSkill(m.charge, skillID)) out.push(m.charge);
708
707
  }
709
708
  for (const d of this.drones) if (itemRequiresSkill(d, skillID)) out.push(d);
package/dist/node.js CHANGED
@@ -679,7 +679,6 @@ var FitContext = class {
679
679
  const skillID = modifier.skillTypeID;
680
680
  const out = [];
681
681
  for (const m of this.modules) {
682
- if (itemRequiresSkill(m, skillID)) out.push(m);
683
682
  if (m.charge && itemRequiresSkill(m.charge, skillID)) out.push(m.charge);
684
683
  }
685
684
  for (const d of this.drones) if (itemRequiresSkill(d, skillID)) out.push(d);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eve-fit-engine",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Pyfa-parity EVE Online ship & structure fitting calculation engine. Inject an SDE dataset + a fit, get the full derived stat block (offense, defense, capacitor, navigation, targeting, fitting, projected, structure).",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "type": "module",