Quantcast

Fixed a bug in table constructor

James Whitehead II [01-11-11 - 14:11]
Fixed a bug in table constructor
Filename
CaptainsLog.lua
diff --git a/CaptainsLog.lua b/CaptainsLog.lua
index b3a1c54..a3cfdeb 100644
--- a/CaptainsLog.lua
+++ b/CaptainsLog.lua
@@ -18,25 +18,25 @@ function addon:Initialize()
         },
         profile = {
             showinfeed = {
-                L["Whisper"] = true,
-                L["Party"] = true,
-                L["Guild"] = true,
-                L["Battle.net"] = true,
-                L["Raid"] = true,
+                [L["Whisper"]] = true,
+                [L["Party"]] = true,
+                [L["Guild"]] = true,
+                [L["Battle.net"]] = true,
+                [L["Raid"]] = true,
             },
             showintooltip = {
-                L["Whisper"] = true,
-                L["Party"] = true,
-                L["Guild"] = true,
-                L["Battle.net"] = true,
-                L["Raid"] = true,
+                [L["Whisper"]] = true,
+                [L["Party"]] = true,
+                [L["Guild"]] = true,
+                [L["Battle.net"]] = true,
+                [L["Raid"]] = true,
             },
             log = {
-                L["Whisper"] = false,
-                L["Party"] = false,
-                L["Guild"] = false,
-                L["Battle.net"] = false,
-                L["Raid"] = false,
+                [L["Whisper"]] = false,
+                [L["Party"]] = false,
+                [L["Guild"]] = false,
+                [L["Battle.net"]] = false,
+                [L["Raid"]] = false,
             }
         },
     })