From b25278bf81a013fc2bcfb44ef18e32f84609d40b Mon Sep 17 00:00:00 2001 From: Cmdr McDonald Date: Sat, 4 Mar 2017 08:42:16 +0000 Subject: [PATCH] Fix bad value for kinetic shield booster grade 5 --- ChangeLog.md | 1 + dist/index.js | 2 +- dist/index.json | 2 +- modifications/blueprints.json | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 249ab45..f575262 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -7,6 +7,7 @@ * Fix EDDB IDs for class 5 and 7 fighter hangars for correct shopping list * Fix cost for rocket-propelled FSD disruptor * Add module names for blueprints + * Fix erroneous value for grade 5 kinetic shield booster #2.2.19 * Remove shot speed modification - it is directly tied to range diff --git a/dist/index.js b/dist/index.js index 1cc14db..f7d1434 100644 --- a/dist/index.js +++ b/dist/index.js @@ -19233,7 +19233,7 @@ module.exports = { }, features: { explres: [ -.05, -.03 ], - kinres: [ .17, -.2 ], + kinres: [ .17, .2 ], thermres: [ -.05, -.03 ] } }, diff --git a/dist/index.json b/dist/index.json index a418178..b72dbba 100644 --- a/dist/index.json +++ b/dist/index.json @@ -25321,7 +25321,7 @@ ], "kinres": [ 0.17, - -0.2 + 0.2 ], "thermres": [ -0.05, diff --git a/modifications/blueprints.json b/modifications/blueprints.json index 7157205..cb49737 100644 --- a/modifications/blueprints.json +++ b/modifications/blueprints.json @@ -4962,7 +4962,7 @@ }, "features": { "explres": [ -0.05, -0.03 ], - "kinres": [ 0.17, -0.2 ], + "kinres": [ 0.17, 0.2 ], "thermres": [ -0.05, -0.03 ] } },