Stop dividing burst two times by 100

This commit is contained in:
felixlinker
2018-09-29 00:55:37 +01:00
parent 5d52809d0d
commit c9866c146b

View File

@@ -270,7 +270,7 @@ export default class Module {
} else { } else {
result = result * (1 + modValue); result = result * (1 + modValue);
} }
} else if (name === 'burst' || name === 'burstrof') { } else if (name === 'burstrof') {
// Burst and burst rate of fire are special, as it can not exist but // Burst and burst rate of fire are special, as it can not exist but
// have a modification // have a modification
result = modValue / 100; result = modValue / 100;