diff --git a/dist/habitrpg-shared.js b/dist/habitrpg-shared.js index 85752f966e..93532e4ea6 100644 --- a/dist/habitrpg-shared.js +++ b/dist/habitrpg-shared.js @@ -10015,7 +10015,7 @@ var global=self;/** bonus = (target.value < 0 ? 1 : target.value + 1) * 2.5; user.stats.exp += bonus; if (user.party.quest.key) { - return user.party.quest.tally.up += bonus; + return user.party.quest.progress.up += bonus; } } }, @@ -10073,7 +10073,7 @@ var global=self;/** cast: function(user, target) { target.value += user._statsComputed.str * .01 * user.fns.crit('per'); if (user.party.quest.key) { - return user.party.quest.tally.up += Math.ceil(user._statsComputed.str * .2); + return user.party.quest.progress.up += Math.ceil(user._statsComputed.str * .2); } } }, diff --git a/script/content.coffee b/script/content.coffee index f990ceea4e..547555964b 100644 --- a/script/content.coffee +++ b/script/content.coffee @@ -222,7 +222,7 @@ api.spells = target.value += user._statsComputed.int * .0075 * user.fns.crit('per') bonus = (if target.value < 0 then 1 else target.value+1) * 2.5 user.stats.exp += bonus - user.party.quest.tally.up += bonus if user.party.quest.key + user.party.quest.progress.up += bonus if user.party.quest.key mpheal: text: 'Ethereal Surge' @@ -265,7 +265,7 @@ api.spells = notes: "You savagely hit a single task with all of your might, beating it into submission. The task's redness decreases." cast: (user, target) -> target.value += user._statsComputed.str * .01 * user.fns.crit('per') - user.party.quest.tally.up += Math.ceil(user._statsComputed.str * .2) if user.party.quest.key + user.party.quest.progress.up += Math.ceil(user._statsComputed.str * .2) if user.party.quest.key defensiveStance: text: 'Defensive Stance' mana: 25 @@ -317,7 +317,7 @@ api.spells = bonus = (if target.value < 0 then 1 else target.value+1) * _crit user.stats.exp += bonus user.stats.gp += bonus - # user.party.quest.tally.up += bonus if user.party.quest.key # remove hurting bosses for rogues, seems OP for now + # user.party.quest.progress.up += bonus if user.party.quest.key # remove hurting bosses for rogues, seems OP for now toolsOfTrade: text: 'Tools of the Trade' mana: 25