From 8ad9472d5612679b8466159a4e31af13add26a53 Mon Sep 17 00:00:00 2001 From: Cmdr McDonald Date: Wed, 22 Mar 2017 18:24:22 +0000 Subject: [PATCH] Provide correct blueprints limits for HRPs --- src/app/utils/BlueprintFunctions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/utils/BlueprintFunctions.js b/src/app/utils/BlueprintFunctions.js index 0389f2cf..8c9f117d 100644 --- a/src/app/utils/BlueprintFunctions.js +++ b/src/app/utils/BlueprintFunctions.js @@ -81,8 +81,8 @@ export function getBlueprint(name, module) { // Start with a copy of the blueprint const blueprint = JSON.parse(JSON.stringify(Modifications.blueprints[name])); if (module) { - if (module.grp === 'bh') { - // Bulkheads need to have their resistances altered + if (module.grp === 'bh' || module.grp === 'hr') { + // Bulkheads and hull reinforcements need to have their resistances altered by the base values for (const grade in blueprint.grades) { for (const feature in blueprint.grades[grade].features) { if (feature === 'explres') {