Quantcast

fixed incorrect item amount detection

Alex Shubert [03-05-12 - 14:51]
fixed incorrect item amount detection
Filename
AutoTurnIn.lua
localization_RU.lua
diff --git a/AutoTurnIn.lua b/AutoTurnIn.lua
index 0e2645b..a21dd61 100644
--- a/AutoTurnIn.lua
+++ b/AutoTurnIn.lua
@@ -99,7 +99,7 @@ function AutoTurnIn:GOSSIP_SHOW()
 				local quest = L.quests[questname]
 				if AutoTurnInCharacterDB.all or quest  then
 					if quest and quest.amount then
-						if GetItemAmount(quest.currency, quest.item) > quest.amount then
+						if GetItemAmount(quest.currency, quest.item) >= quest.amount then
 							SelectGossipActiveQuest(math.floor(i/4)+1)
 							return
 						end
@@ -118,7 +118,7 @@ function AutoTurnIn:GOSSIP_SHOW()
 			local quest = L.quests[questname]
 			if AutoTurnInCharacterDB.all or (quest and (not quest.donotaccept)) then
 				if quest and quest.amount then
-					if GetItemAmount(quest.currency, quest.item) > quest.amount then
+					if GetItemAmount(quest.currency, quest.item) >= quest.amount then
 						SelectGossipAvailableQuest(math.floor(i/5)+1)
 						return
 					end
diff --git a/localization_RU.lua b/localization_RU.lua
index 2a64d0b..62b6eba 100644
--- a/localization_RU.lua
+++ b/localization_RU.lua
@@ -49,7 +49,7 @@ privateTable.L.quests = {
 ["Перья для Нафиэна"]={item="Перо из головного убора Мертвого Леса", amount=5, currency=false},
 ["Четки для Сальфы"]={item="Бусы духов Зимней Спячки", amount=5, currency=false},
 -- Cenarion
-["Зашифрованные Сумеречные тексты"]={item="Зашифрованные Сумеречные тексты", amount=10, currency=false},
+["Зашифрованные Сумеречные тексты"]={item="Зашифрованный Сумеречный текст", amount=10, currency=false},
 ["Не теряя веры"]={item="Зашифрованные Сумеречные тексты", amount=10, currency=false},
 -- Thorium Brotherhood
 ["Завоевать еще большую благосклонность"]={item="Окалина черного железа", amount=100, currency=false},