- Removed level restriction on harmony power since apparently that's not a thing any more.

- Fixed the fifth chi not always drawing immediately when changing specs to one that grants an additional chi.
- Registered harmony power for the UNIT_POWER_FREQUENT event since that's what Blizzard's version does.
This commit is contained in:
Parnic
2012-09-02 04:29:41 +00:00
parent 08de61d849
commit a4390cf0cd
2 changed files with 20 additions and 3 deletions

View File

@ -430,7 +430,7 @@ function IceClassPowerCounter.prototype:CheckValidLevel(event, level)
end
end
if level < self.minLevel then
if self.minLevel and level < self.minLevel then
self:RegisterEvent("PLAYER_LEVEL_UP", "CheckValidLevel")
self:Show(false)
else