Skip to content

Commit

Permalink
Remove trunc(2) to adjusted quantity
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyria committed Jul 27, 2019
1 parent f75617f commit 831b80d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lazyblacksmith/static/js/lb/eveutils.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var eveUtils = (function(utils) {
if(isStructure) {
materialBonus *= 1-(rigBonus * rigMultiplier);
}
return Math.max(1.00, quantity * materialBonus * facilityBonus).toFixed(2);
return Math.max(1.00, quantity * materialBonus * facilityBonus);
};

/**
Expand Down

0 comments on commit 831b80d

Please sign in to comment.