We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c5cf3d commit 8bddbb7Copy full SHA for 8bddbb7
src/LoadoutChanges/utils.ts
@@ -399,7 +399,10 @@ export const getBackPackInternalGridValue = ({
399
});
400
// if (total > 20) total += 20;
401
402
- total = Math.round((total * 10) / Weight);
+ total = Math.round(total - Weight) * 5;
403
+ if (total < 0) total = 1;
404
+ // console.log(total, _name, Weight);
405
+
406
if (["6034d103ca006d2dca39b3f0", "6038d614d10cbf667352dd44"].includes(_id)) {
407
total = Math.round(total * 0.7);
408
}
0 commit comments