Add multiplier config
This commit is contained in:
parent
1a349cb045
commit
da66cf9001
2 changed files with 2 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ const getRank = (experience: number): IRank => {
|
|||
while (tmpExperience >= expToNextRank) {
|
||||
rank++;
|
||||
tmpExperience -= expToNextRank;
|
||||
expToNextRank = expToNextRank *= 1.2;
|
||||
expToNextRank = expToNextRank *= config.app.experience.multiplier;
|
||||
}
|
||||
|
||||
return {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue