- Minimalistic V1 is now the default skin again.

- Few improvements on skins.
- Create custom spell for Living Bomb explosion.
This commit is contained in:
Tercio
2015-01-28 21:38:54 -02:00
parent 1c208a059a
commit 69a6f944de
15 changed files with 444 additions and 268 deletions
+10 -2
View File
@@ -258,14 +258,22 @@ local DropDownMetaFunctions = {}
function DropDownMetaFunctions:Enable()
self:SetAlpha (1)
return _rawset (self, "lockdown", false)
_rawset (self, "lockdown", false)
if (self.OnEnable) then
self.OnEnable (self)
end
--return self.dropdown:Enable()
end
function DropDownMetaFunctions:Disable()
self:SetAlpha (.4)
return _rawset (self, "lockdown", true)
_rawset (self, "lockdown", true)
if (self.OnDisable) then
self.OnDisable (self)
end
--return self.dropdown:Disable()
end