Quantcast

Revert "Use double underscore to avoid tainting blizzard"

Adrian L Lange [10-13-12 - 09:49]
Revert "Use double underscore to avoid tainting blizzard"

This reverts commit 32ff39ebe69d8bcc759bcec48eaa9f250bbbadcd.
Filename
Monomyth.lua
diff --git a/Monomyth.lua b/Monomyth.lua
index e2bc5bf..ea1584c 100644
--- a/Monomyth.lua
+++ b/Monomyth.lua
@@ -14,7 +14,7 @@ end

 local function IsTrackingTrivial()
 	for index = 1, GetNumTrackingTypes() do
-		local name, __, active = GetTrackingInfo(index)
+		local name, _, active = GetTrackingInfo(index)
 		if(name == MINIMAP_TRACKING_TRIVIAL_QUESTS) then
 			return active
 		end
@@ -25,7 +25,7 @@ Monomyth:Register('QUEST_GREETING', function()
 	local active = GetNumActiveQuests()
 	if(active > 0) then
 		for index = 1, active do
-			local __, complete = GetActiveTitle(index)
+			local _, complete = GetActiveTitle(index)
 			if(complete) then
 				SelectActiveQuest(index)
 			end
@@ -84,9 +84,9 @@ Monomyth:Register('GOSSIP_SHOW', function()
 		end
 	end

-	local __, instance = GetInstanceInfo()
+	local _, instance = GetInstanceInfo()
 	if(available == 0 and active == 0 and GetNumGossipOptions() == 1 and instance ~= 'raid') then
-		local __, type = GetGossipOptions()
+		local _, type = GetGossipOptions()
 		if(type == 'gossip') then
 			SelectGossipOption(1)
 			return
@@ -141,7 +141,7 @@ Monomyth:Register('QUEST_COMPLETE', function()
 		for index = 1, choices do
 			local link = GetQuestItemLink('choice', index)
 			if(link) then
-				local __, __, __, __, __, __, __, __, __, __, value = GetItemInfo(link)
+				local _, _, _, _, _, _, _, _, _, _, value = GetItemInfo(link)

 				if(string.match(link, 'item:45724:')) then
 					-- Champion's Purse, contains 10 gold
@@ -214,7 +214,7 @@ Monomyth:Register('BAG_UPDATE', function(bag)
 	if(atBank or atMail or atMerchant) then return end

 	for slot = 1, GetContainerNumSlots(bag) do
-		local __, id, active = GetContainerItemQuestInfo(bag, slot)
+		local _, id, active = GetContainerItemQuestInfo(bag, slot)
 		if(id and not active and not IsQuestFlaggedCompleted(id)) then
 			UseContainerItem(bag, slot)
 		end