Quantcast

Some local shit

Darthpred [02-19-14 - 07:43]
Some local shit
Filename
ElvUI_SLE/dev/commands.lua
ElvUI_SLE/modules/chat/chat.lua
diff --git a/ElvUI_SLE/dev/commands.lua b/ElvUI_SLE/dev/commands.lua
index 18a2df2..fa0b79c 100755
--- a/ElvUI_SLE/dev/commands.lua
+++ b/ElvUI_SLE/dev/commands.lua
@@ -3,6 +3,8 @@ local SLE = E:GetModule('SLE');
 local find = string.find
 local split = string.split

+local E.myname, E.myrealm, E.myclass, SLE.version = E.myname, E.myrealm, E.myclass, SLE.version
+
 local Message = ''

 --The list of authorized toons
diff --git a/ElvUI_SLE/modules/chat/chat.lua b/ElvUI_SLE/modules/chat/chat.lua
index 775a5c1..5f36e11 100755
--- a/ElvUI_SLE/modules/chat/chat.lua
+++ b/ElvUI_SLE/modules/chat/chat.lua
@@ -14,6 +14,8 @@ local lfgChannels = {
 	"INSTANCE_CHAT_LEADER",
 }

+local E.myname, E.myrealm = E.myname, E.myrealm
+
 local len, gsub, find, sub, gmatch, format, random = string.len, string.gsub, string.find, string.sub, string.gmatch, string.format, math.random
 local tinsert, tremove, tsort, twipe, tconcat = table.insert, table.remove, table.sort, table.wipe, table.concat