From 9a55c2621ef08e36df4cb88dad570f0b960b323b Mon Sep 17 00:00:00 2001 From: Vavehl Date: Sun, 7 Jun 2026 14:37:21 -0400 Subject: [PATCH] [lua] Fix Plague Chigoe spawn for The Prankster quest Rename the ??? (I-8 in Bhaflau Thickets) from qm4 to qm3 to align the lua references with the new DB NPC name. --- scripts/quests/ahtUrhgan/The_Prankster.lua | 6 +++--- scripts/zones/Bhaflau_Thickets/DefaultActions.lua | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/quests/ahtUrhgan/The_Prankster.lua b/scripts/quests/ahtUrhgan/The_Prankster.lua index 70c896efba5..3cc449d52d7 100644 --- a/scripts/quests/ahtUrhgan/The_Prankster.lua +++ b/scripts/quests/ahtUrhgan/The_Prankster.lua @@ -4,7 +4,7 @@ -- Ahaadah !pos -70 -6 105 50 -- Aht Whitegate region 11 -- Aht Whitegate region 12 --- qm4 !pos 460.166 -14.920 256.214 52 +-- qm3 !pos 460.166 -14.920 256.214 52 ----------------------------------- local quest = Quest:new(xi.questLog.AHT_URHGAN, xi.quest.id.ahtUrhgan.THE_PRANKSTER) @@ -98,7 +98,7 @@ quest.sections = [xi.zone.BHAFLAU_THICKETS] = { - ['qm4'] = + ['qm3'] = { onTrigger = function(player, npc) if not GetMobByID(ID.mob.PLAGUE_CHIGOE):isSpawned() then @@ -132,7 +132,7 @@ quest.sections = { ['Ahaadah'] = quest:event(17), - ['qm4'] = quest:progressCutscene(2), + ['qm3'] = quest:progressCutscene(2), onEventFinish = { diff --git a/scripts/zones/Bhaflau_Thickets/DefaultActions.lua b/scripts/zones/Bhaflau_Thickets/DefaultActions.lua index ef3d9f0ae04..9ad33fc5a20 100644 --- a/scripts/zones/Bhaflau_Thickets/DefaultActions.lua +++ b/scripts/zones/Bhaflau_Thickets/DefaultActions.lua @@ -2,6 +2,6 @@ local ID = zones[xi.zone.BHAFLAU_THICKETS] return { ['Mythralline_Wellspring'] = { messageSpecial = ID.text.WELLSPRING }, - ['qm4'] = { messageSpecial = ID.text.NOTHING_HAPPENS }, + ['qm3'] = { messageSpecial = ID.text.NOTHING_HAPPENS }, ['Warhorse_Hoofprint'] = { messageSpecial = ID.text.WARHORSE_HOOFPRINT }, }