Page 1 of 1

Speed Display Bug

Posted: Sun Dec 05, 2010 5:10 pm
by edge2054
The Speed timed effect isn't returning the right values.

For Eden's Guile I noticed it said I was getting a 77% speed increase (I checked the artifact itself and found that I should be getting about 43%).

So I checked Grace of the Eternals. The talent tooltip displays 37% and the Speed mouseover claims I'm getting 60%.

Should

Code: Select all

 long_desc = function(self, eff) return ("Increases global action speed by %d%%."):format((1 / (1 - eff.power) - 1) * 100) end,
Just be?

Code: Select all

long_desc = function(self, eff) return ("Increases global action speed by %d%%."):format(eff.power * 100) end,

Re: Speed Display Bug

Posted: Tue Dec 07, 2010 7:49 pm
by yufra