Speed Display Bug

Where bugs go to lie down and rest

Moderator: Moderator

Post Reply
Message
Author
edge2054
Retired Ninja
Posts: 3756
Joined: Fri May 28, 2010 4:38 pm

Speed Display Bug

#1 Post 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,

yufra
Perspiring Physicist
Posts: 1332
Joined: Tue Jul 13, 2010 2:53 pm

Re: Speed Display Bug

#2 Post by yufra »

<DarkGod> lets say it's intended

Post Reply