From 5b95e1fdc2ee97338c6b7da4980a140c2225cd2f Mon Sep 17 00:00:00 2001 From: Adrian L Lange Date: Mon, 6 Aug 2012 13:52:58 +0200 Subject: [PATCH] This should have been fixed a long time ago --- Monomyth.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Monomyth.lua b/Monomyth.lua index 06a4547..b0d72a8 100644 --- a/Monomyth.lua +++ b/Monomyth.lua @@ -55,11 +55,11 @@ end) -- This should be part of the API, really local function IsGossipQuestCompleted(index) - return not not select(index * 4, GetGossipActiveQuests()) + return not not select(((index * 5) - 5) + 4, GetGossipActiveQuests()) end local function IsGossipQuestTrivial(index) - return not not select(index * 3, GetGossipAvailableQuests()) + return not not select(((index * 6) - 6) + 3, GetGossipAvailableQuests()) end local function GetNumGossipCompletedQuests() -- 1.7.9.5