Quantcast

Bug fix

Scott Sibley [09-17-10 - 10:16]
Bug fix
Filename
Modules/Text.lua
Modules/UnitTooltip.lua
diff --git a/Modules/Text.lua b/Modules/Text.lua
index 45b4962..68dfaa8 100644
--- a/Modules/Text.lua
+++ b/Modules/Text.lua
@@ -75,7 +75,8 @@ end
 		points = {{"BOTTOMLEFT", "GameTooltip", "TOPLEFT", 0, 12}},
 		parent = "GameTooltip",
 		strata = 1,
-		level = 1
+		level = 1,
+		background = {0, 0, 0, 1}
 	},
 	[2] = {
 		name = "Health",
diff --git a/Modules/UnitTooltip.lua b/Modules/UnitTooltip.lua
index ca38a46..b33a332 100644
--- a/Modules/UnitTooltip.lua
+++ b/Modules/UnitTooltip.lua
@@ -136,12 +136,12 @@ return Realm(unit)
         right = [[
 local lvl = UnitLevel(unit)
 local class = " "
-if Classification(unit) then
-    class = " (" .. Classification(unit) .. ")"
-end
+--if Classification(unit) then
+--    class = " (" .. Classification(unit) .. ")"
+--end

 if lvl < 0 then
-    return Classification(unit) or "Unknown"
+    return "*"--Classification(unit) or "Unknown"
 else
     return format("%s", Level(unit))
 end
@@ -369,6 +369,8 @@ function mod:OnInitialize()
     StarTip:SetOptionsDisabled(options, true)

 	self.core = LibCore:New(mod, environment, self:GetName(), {[self:GetName()] = {}}, "text", StarTip.db.profile.errorLevel)
+	environment.core = self.core
+
 	if ResourceServer then ResourceServer:New(environment) end
 	--self.lcd = LCDText:New(self.core, 1, 40, 0, 0, 0, StarTip.db.profile.errorLevel)
 	--self.core.lcd = self.lcd