mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-05 03:52:14 +00:00
divide exp gain by 2, temporary hack since people are leveling way too
fast.
This commit is contained in:
parent
a534eec548
commit
bb57eddec1
1 changed files with 1 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ score = (model, taskId, direction, times, batch, cron) ->
|
|||
addPoints = ->
|
||||
level = user.get('stats.lvl')
|
||||
weaponStrength = items.items.weapon[user.get('items.weapon')].strength
|
||||
exp += algos.expModifier(delta,weaponStrength,level, priority)
|
||||
exp += algos.expModifier(delta,weaponStrength,level, priority) / 2 # / 2 hack for now bcause people leveling too fast
|
||||
gp += algos.gpModifier(delta, 1, priority)
|
||||
|
||||
subtractPoints = ->
|
||||
|
|
|
|||
Loading…
Reference in a new issue