From b52d4e4e90d259eab6514c4d9b030bfb6e87d2dc Mon Sep 17 00:00:00 2001 From: James Whitehead II Date: Tue, 11 Jan 2011 14:11:59 +0000 Subject: [PATCH] Fixed a bug in table constructor --- CaptainsLog.lua | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) 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, } }, }) -- 1.7.9.5