From 1390339024267ed88c081b5671db3158e1a3293b Mon Sep 17 00:00:00 2001 From: Colin McLeod Date: Wed, 2 Mar 2016 10:07:05 -0800 Subject: [PATCH] Hull reinforcement will always clobber, fix --- src/app/components/InternalSlotSection.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/InternalSlotSection.jsx b/src/app/components/InternalSlotSection.jsx index ca9d197c..8e7dd427 100644 --- a/src/app/components/InternalSlotSection.jsx +++ b/src/app/components/InternalSlotSection.jsx @@ -76,7 +76,7 @@ export default class InternalSlotSection extends SlotSection { let clobber = event.getModifierState('Alt'); let ship = this.props.ship; ship.internal.forEach((slot) => { - if (clobber || !slot.c) { + if (clobber || !slot.m) { ship.use(slot, ModuleUtils.findInternal('hr', Math.min(slot.maxClass, 5), 'D')); // Hull reinforcements top out at 5D } });