From 319307136c03acabfb2403e843d2efd44bec3222 Mon Sep 17 00:00:00 2001 From: Felix Linker Date: Tue, 15 Jan 2019 19:17:45 +0100 Subject: [PATCH] Remove constraints for modification of maxmass --- src/app/shipyard/Module.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/shipyard/Module.js b/src/app/shipyard/Module.js index b4cb3615..cb37a9a7 100755 --- a/src/app/shipyard/Module.js +++ b/src/app/shipyard/Module.js @@ -703,8 +703,7 @@ export default class Module { let result = 0; if (this['maxmass']) { result = this['maxmass']; - // max mass is only modified for shield generators - if (result && modified && this.grp === 'sg') { + if (result && modified) { let mult = this.getModValue('optmass') / 10000; if (mult) { result = result * (1 + mult); } }