- made castbar "lock text alpha" setting actually access the correct variable

This commit is contained in:
Parnic
2008-02-19 14:57:07 +00:00
parent 571bfeacb9
commit de198807be

View File

@ -210,10 +210,10 @@ function CastBar.prototype:GetOptions()
name = "Lock Bar Text Alpha",
desc = "Locks text alpha to 100%",
get = function()
return self.moduleSettings.lockTextAlpha
return self.moduleSettings.lockUpperTextAlpha
end,
set = function(v)
self.moduleSettings.lockTextAlpha = v
self.moduleSettings.lockUpperTextAlpha = v
self:Redraw()
end,
order = 13