From 627b07ef86f35483edf7c3885bc43762cb83a0b3 Mon Sep 17 00:00:00 2001 From: Verabird Date: Fri, 13 Mar 2015 16:45:00 -0400 Subject: [PATCH] Rebalance stealth diminishing returns again --- common/script/content.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/script/content.coffee b/common/script/content.coffee index 339062f042..bc4c04753f 100644 --- a/common/script/content.coffee +++ b/common/script/content.coffee @@ -611,8 +611,8 @@ api.spells = notes: t('spellRogueStealthNotes') cast: (user, target) -> user.stats.buffs.stealth ?= 0 - ## scales to user's # of dailies; Diminishing Returns, maxes out at 65%, halfway point at 90 PER## - user.stats.buffs.stealth += Math.ceil( diminishingReturns(user._statsComputed.per, user.dailys.length*0.65,90)) + ## scales to user's # of dailies; Diminishing Returns, maxes out at 64%, halfway point at 55 PER## + user.stats.buffs.stealth += Math.ceil( diminishingReturns(user._statsComputed.per, user.dailys.length*0.64,55)) healer: heal: