This commit is contained in:
Tyler Renelle 2013-12-28 22:01:44 -07:00
parent 77a1c91422
commit dfa25c6f3a
2 changed files with 2 additions and 2 deletions

View file

@ -10177,7 +10177,7 @@ var global=self;/**
if ((_base = user.stats.buffs).stealth == null) {
_base.stealth = 0;
}
return user.stats.buffs.stealth = Math.ceil(user._statsComputed.per * .03);
return user.stats.buffs.stealth += Math.ceil(user._statsComputed.per * .03);
}
}
},

View file

@ -337,7 +337,7 @@ api.spells =
notes: "You duck into the shadows, pulling up your hood. Many dailies won't find you this night; fewer yet the higher your Perception."
cast: (user, target) ->
user.stats.buffs.stealth ?= 0
user.stats.buffs.stealth = Math.ceil(user._statsComputed.per * .03)
user.stats.buffs.stealth += Math.ceil(user._statsComputed.per * .03)
healer:
heal: