Skip to content

Commit

Permalink
Merge pull request #86 from IdleLands/experiencer-fix-again
Browse files Browse the repository at this point in the history
Fix Experiencer buff patch
  • Loading branch information
boozledorf committed Sep 1, 2019
2 parents a0126cd + d721b1e commit 2865177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/core/game/professions/Fighter.ts
Expand Up @@ -58,7 +58,7 @@ export class Fighter extends BaseProfession implements IProfession {
booster: true,
duration: 720,
stats: {
[Stat.XP]: Math.log(luk) * Math.max(1, Math.log(player.level.total * scaler))
[Stat.XP]: Math.max(1, Math.log(luk)) * Math.log(player.level.total * scaler)
}
}, true);

Expand Down

0 comments on commit 2865177

Please sign in to comment.