Skip to content

Commit

Permalink
Cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
funkydude committed Jul 28, 2024
1 parent 33ba1cd commit d852eed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Transcriptor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -541,20 +541,20 @@ function plugin:BigWigs_StopPull()
end
end

function plugin:BigWigs_OnBossEngage(_, module, diff)
if not module.engageId then
function plugin:BigWigs_OnBossEngage(_, module)
if not module:GetEncounterID() then
self:Start()
end
end

function plugin:BigWigs_OnBossWin(_, module)
if not module.engageId then
if not module:GetEncounterID() then
self:ScheduleTimer("Stop", 12) -- catch the end events
end
end

function plugin:BigWigs_OnBossWipe(_, module)
if not module.engageId then
if not module:GetEncounterID() then
self:Stop()
end
end
Expand Down

0 comments on commit d852eed

Please sign in to comment.