mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 22:51:53 -05:00
Fixed player cast error for users without LibCasterCasterino installed
This commit is contained in:
@ -27,11 +27,13 @@ end
|
|||||||
-- module in Classic WoW
|
-- module in Classic WoW
|
||||||
if IceHUD.WowClassic then
|
if IceHUD.WowClassic then
|
||||||
LibClassicCasterino = LibStub("LibClassicCasterino", true)
|
LibClassicCasterino = LibStub("LibClassicCasterino", true)
|
||||||
UnitCastingInfo = function(unit)
|
if LibClassicCasterino then
|
||||||
return LibClassicCasterino:UnitCastingInfo(unit)
|
UnitCastingInfo = function(unit)
|
||||||
end
|
return LibClassicCasterino:UnitCastingInfo(unit)
|
||||||
UnitChannelInfo = function(unit)
|
end
|
||||||
return LibClassicCasterino:UnitChannelInfo(unit)
|
UnitChannelInfo = function(unit)
|
||||||
|
return LibClassicCasterino:UnitChannelInfo(unit)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
-- end Fulzamoth change
|
-- end Fulzamoth change
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
v1.12.9:
|
||||||
|
- (Classic) Fixed error in player cast bar if the user didn't have LibCasterCasterino installed.
|
||||||
|
|
||||||
v1.12.8:
|
v1.12.8:
|
||||||
- (Classic) Fixed TargetCast bar to work for users with the LibCasterCasterino library installed. (thanks, Fulzamoth!)
|
- (Classic) Fixed TargetCast bar to work for users with the LibCasterCasterino library installed. (thanks, Fulzamoth!)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user