Romania
Loreta Isac-Cojocaru is an artist born in Chișinău, Moldova, currently living and working in Bucharest, România. She is professionally active in the fields of animation and illustration. Her journey towards graphic arts started at the Octav Bancila art high school in Iasi. The next stop was the George Enescu Art University in Iasi. During an Erasmus scholarship programme pursued at the PXL-MAD School of Arts Hasselt in Belgium, she fell in love with animation and digital illustration, which have remained her specialties till this day. And the final stop was a master’s degree in arts, completed in Bucharest, România.
instagram: loreta_isac
💙💛 Your pain – I feel it
-- Fix quest log scanning for 4.3.4 API local orig_GetQuestLogTitle = GetQuestLogTitle function GetQuestLogTitle(index) local title, level, suggestedGroup, isHeader, isCollapsed, isComplete, frequency, questID, startEvent, displayQuestID, isTask, isStory, isObjectiveComplete, numObjectives, numCompletedObjectives = orig_GetQuestLogTitle(index) if questID and questID > 0 and not Questie.quests[questID] then Questie.quests[questID] = { zone = "Unknown", level = level, type = "normal" } end return title, level, suggestedGroup, isHeader, isCollapsed, isComplete, frequency, questID, startEvent, displayQuestID, isTask, isStory, isObjectiveComplete, numObjectives, numCompletedObjectives end
-- Add missing Cata quests (example for Hyjal) local cataQuests = { [27728] = { zone = "Mount Hyjal", level = 80, type = "normal" }, -- Aessina's Miracle [27729] = { zone = "Mount Hyjal", level = 80, type = "normal" }, [28233] = { zone = "Vashj'ir", level = 80, type = "normal" }, -- Call of the Sea [28234] = { zone = "Vashj'ir", level = 80, type = "normal" }, } questie 4.3.4
-- Safety check for map frame local orig_QuestieMap_OnShow if QuestieMap and QuestieMap.OnShow then orig_QuestieMap_OnShow = QuestieMap.OnShow QuestieMap.OnShow = function(self, ...) if not Questie or not Questie.db then return end return orig_QuestieMap_OnShow(self, ...) end end -- Fix quest log scanning for 4
for id, data in pairs(cataQuests) do if not Questie.quests[id] then Questie.quests[id] = data end end level = level