* Changed utils to be local
James Whitehead II [04-10-07 - 01:23]
* Changed utils to be local
diff --git a/PerfectRaid.lua b/PerfectRaid.lua
index f52cf8b..d3d59ff 100644
--- a/PerfectRaid.lua
+++ b/PerfectRaid.lua
@@ -36,8 +36,8 @@ local aggro = {}
assert(DongleStub, string.format("PerfectRaid requires DongleStub."))
local L = PerfectRaidLocals
-local utils = DongleStub("DongleUtils-Beta0")
-PerfectRaid = DongleStub("Dongle-Beta1"):New("PerfectRaid")
+local utils
+PerfectRaid = DongleStub("Dongle-1.0"):New("PerfectRaid")
PerfectRaid.rev = tonumber(string.match("$Revision$", "(%d+)") or 1)
function PerfectRaid:Initialize()
@@ -53,6 +53,8 @@ function PerfectRaid:Initialize()
if not ClickCastFrames then
ClickCastFrames = {}
end
+
+ utils = self.utils
end
function PerfectRaid:Enable()