- Fixed tooltip for Auras and Voidzones, now shows sorted by damage and time.
- More fixes for Korgath encounter on Highmaul. - Added slash commands: /details reset and /details config. - Spell bars on Player Details Window now is painted with the spell spellschool color. - Multistrike doesn't count any more for spell's Minimal Damage. - Resource display got an tooltip which shows what resource is and resource gained per minute. - Clicking on report button when the report window is already open, make it close.
This commit is contained in:
@@ -131,7 +131,7 @@
|
||||
if (amount > self.c_max) then
|
||||
self.c_max = amount
|
||||
end
|
||||
if (self.c_min > amount or self.c_min == 0) then
|
||||
if ((self.c_min > amount or self.c_min == 0) and not multistrike) then
|
||||
self.c_min = amount
|
||||
end
|
||||
else
|
||||
@@ -140,7 +140,7 @@
|
||||
if (amount > self.n_max) then
|
||||
self.n_max = amount
|
||||
end
|
||||
if (self.n_min > amount or self.n_min == 0) then
|
||||
if ((self.n_min > amount or self.n_min == 0) and not multistrike) then
|
||||
self.n_min = amount
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user