Skip to content

Commit 9564d9c

Browse files
authored
Merge pull request #9716 from SlashingTangents/Rock-Bug-Fix
[lua] Bug fix quest "Rock Racketeer" wrong prog value check
2 parents b4ae575 + e8377fd commit 9564d9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/quests/windurst/Rock_Racketeer.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ quest.sections =
9494
onTrigger = function(player, npc)
9595
local progress = quest:getVar(player, 'Prog')
9696

97-
if progress == 3 then
97+
if progress == 2 then
9898
if quest:getVar(player, 'Option') < 2 then
9999
return quest:progressEvent(100) -- Optional Dialogue that only places once
100100
else

0 commit comments

Comments
 (0)