# HG changeset patch # User MMOSimca # Date 1473846590 14400 # Node ID b661f10e04d99476bffd02524e1c179aaa28d17f # Parent 9ee86003601070a935df18114e03cde884614ea1 Fixed an issue where world quests could record the rewards as being only honor, which is actually currently impossible. diff -r 9ee860036010 -r b661f10e04d9 Main.lua --- a/Main.lua Wed Sep 07 00:41:00 2016 -0400 +++ b/Main.lua Wed Sep 14 05:49:50 2016 -0400 @@ -940,10 +940,11 @@ local function RecordWorldQuestData(world_map_id, quest_id, api_data_table) -- Ensure we have location data and rewards (barely readable so putting it on multiple lines) + -- (Honor is built in to the quest; it is not a sign rewards have been loaded) if not api_data_table.x or not api_data_table.y or not api_data_table.floor or not (_G.GetQuestLogRewardXP(quest_id) > 0 or _G.GetNumQuestLogRewardCurrencies(quest_id) > 0 or _G.GetNumQuestLogRewards(quest_id) > 0 or _G.GetQuestLogRewardMoney(quest_id) > 0 - or _G.GetQuestLogRewardArtifactXP(quest_id) > 0 or _G.GetQuestLogRewardHonor(quest_id) > 0) then + or _G.GetQuestLogRewardArtifactXP(quest_id) > 0) then return end