fix #54 LunaUnitFrames

This commit is contained in:
Crum
2018-11-28 12:56:41 -06:00
parent b920f17f02
commit 3ebbb323a4
2 changed files with 8 additions and 5 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
-- $Id: LibStub.lua 103 2014-10-16 03:02:50Z mikk $
-- LibStub is a simple versioning stub meant for use in Libraries. http://www.wowace.com/addons/libstub/ for more info
-- LibStub is a simple versioning stub meant for use in Libraries. http://www.wowace.com/addons/libstub/ for more info
-- LibStub is hereby placed in the Public Domain
-- Credits: Kaelten, Cladhaire, ckknight, Mikk, Ammo, Nevcairiel, joshborke
local LIBSTUB_MAJOR, LIBSTUB_MINOR = "LibStub", 2 -- NEVER MAKE THIS AN SVN REVISION! IT NEEDS TO BE USABLE IN ALL REPOS!
local LIBSTUB_MAJOR, LIBSTUB_MINOR = "LibStub", 2 -- NEVER MAKE THIS AN SVN REVISION! IT NEEDS TO BE USABLE IN ALL REPOS!
local LibStub = _G[LIBSTUB_MAJOR]
local find, format = string.find, string.format
@@ -51,4 +51,4 @@ if not LibStub or LibStub.minor < LIBSTUB_MINOR then
end
setmetatable(LibStub, { __call = LibStub.GetLibrary })
end
end