removed some more debug outputs
git [04-02-18 - 17:55]
removed some more debug outputs
diff --git a/IIfA/IIfA.lua b/IIfA/IIfA.lua
index 07174f5..b771041 100644
--- a/IIfA/IIfA.lua
+++ b/IIfA/IIfA.lua
@@ -163,7 +163,7 @@ function IIfA:TextColorFixup(settings)
-- d("settings.TextColorsCraftBag = " .. settings.TextColorsCraftBag)
if settings.TextColorsToon == nil then
if settings.in2TextColors then
- d("old = " .. settings.in2TextColors)
+ -- d("old = " .. settings.in2TextColors)
self.colorHandlerToon = ZO_ColorDef:New(settings.in2TextColors)
self.colorHandlerBank = ZO_ColorDef:New(settings.in2TextColors)
self.colorHandlerGBank = ZO_ColorDef:New(settings.in2TextColors)
@@ -171,7 +171,7 @@ function IIfA:TextColorFixup(settings)
self.colorHandlerHouseChest = ZO_ColorDef:New(settings.in2TextColors)
self.colorHandlerCraftBag = ZO_ColorDef:New(settings.in2TextColors)
else
- d("Using default textcolors")
+ -- d("Using default textcolors")
self.colorHandlerToon = ZO_ColorDef:New(IIFA_COLOR_DEFAULT:ToHex())
self.colorHandlerBank = ZO_ColorDef:New(IIFA_COLOR_DEFAULT:ToHex())
self.colorHandlerGBank = ZO_ColorDef:New(IIFA_COLOR_DEFAULT:ToHex())
@@ -187,7 +187,7 @@ function IIfA:TextColorFixup(settings)
settings.TextColorsCraftBag = self.colorHandlerCraftBag:ToHex()
settings.in2TextColors = nil
else
- d("using saved textcolors")
+ -- d("using saved textcolors")
self.colorHandlerToon = ZO_ColorDef:New(settings.TextColorsToon)
self.colorHandlerBank = ZO_ColorDef:New(settings.TextColorsBank)
self.colorHandlerGBank = ZO_ColorDef:New(settings.TextColorsGBank)