mirror of
https://github.com/seigler/bl3skills.com
synced 2025-07-27 01:36:12 +00:00
Remove flat damage scaling
This commit is contained in:
parent
0f46cb32ac
commit
f2f01e7243
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ function percent (rank, unit) {
|
|||
return Math.round(rank * unit * 10) / 10;
|
||||
}
|
||||
function flat (rank, level, unit) {
|
||||
return Math.floor(rank * unit * (1.09 ** level));
|
||||
return Math.floor(rank * unit);
|
||||
}
|
||||
|
||||
/* eslint-disable quotes */
|
||||
|
|
|
@ -4,7 +4,7 @@ function percent (rank, unit) {
|
|||
return Math.round(rank * unit * 10) / 10;
|
||||
}
|
||||
function flat (rank, level, unit) {
|
||||
return Math.floor(rank * unit * (1.09 ** level));
|
||||
return Math.floor(rank * unit);
|
||||
}
|
||||
|
||||
/* eslint-disable quotes */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue