1
0
Bifurcation 0

Modified error message mentioned in issue 13 to give the quest name.

Cette révision appartient à :
Nathanial.C.Jones 2010-10-28 01:34:15 +00:00
Parent d389749812
révision efe3761afb
1 fichiers modifiés avec 5 ajouts et 1 suppressions

Voir le fichier

@ -131,7 +131,11 @@ local function GetQuestMetaobjective(questid, lbcount, qindex)
if not QuestCriteriaWarningBroadcast and q and q.criteria then for k, v in pairs(q.criteria) do
if type(k) == "number" and k > lbcount then
--QuestHelper:TextOut(string.format("Too many stored objectives for this quest, please report on the Questhelper homepage (%s %s %s)", questid, lbcount, k)) -- we're just going to hide this for now
QuestHelper_ErrorCatcher_ExplicitError(false, string.format("Too many stored objectives (%s %s %s)", questid, lbcount, k))
if qindex then
QuestHelper_ErrorCatcher_ExplicitError(false, string.format("Too many stored objectives (%s %s %s %s)", questid, lbcount, k, select(1, GetQuestLogTitle(qindex)))
else
QuestHelper_ErrorCatcher_ExplicitError(false, string.format("Too many stored objectives (%s %s %s %s)", questid, lbcount, k, v))
end
QuestCriteriaWarningBroadcast = true
end
end end