View Bug Report
Not showing Quest objects properly
Bug #: 1577
File: FuBar - QuestsFu
Date: 06-30-06 08:33 AM
By: Jncl
Status: Unconfirmed
Hi,

I am currently questing in Hillsbrad Foothills and one of the Battle of Hillsbrad quests has a quest object as well as a quest item and two monsters.

The quest description wasn't formatting the line with the quest object correctly so I made a change to the lua file to fix it.

The change I made was on line 492 from if qtype == 'item' then to if (qtype == 'item' or qtype == 'object') then.

The quest line that wasn't being displaying properly was the Hillsbrad Proclamation destroyed: 0/1.

I hope this helps.


RSS 2.0 Feed for Bug CommentsNotes Sort Options
By: Jncl - 06-30-06 08:41 AM
Sorry, the line number is 489, I had added some debug lines
By: Jncl - 07-19-06 12:11 PM
I Ran diff on the current version and my version, here are the resaults:

Index: QuestsFu.lua
===================================================================
--- QuestsFu.lua (revision 5135)
+++ QuestsFu.lua (working copy)
@@ -501,7 +520,7 @@
local desc, qtype, done = GetQuestLogLeaderBoard(ii)
local itemName,mobName,numNeeded,numItems,factionName,factionCurrent,factionNeeded

- if qtype == 'item' then
+ if (qtype == 'item' or qtype == 'object') then
itemName,numItems,numNeeded = babble.Deformat(desc, QUEST_OBJECTS_FOUND)
desc = itemName
elseif qtype == 'monster' then