Skip to content

Commit

Permalink
Core: actually fix mod.noBossDeathKil
Browse files Browse the repository at this point in the history
Continuation of d694ef1
  • Loading branch information
Zidras committed Jul 16, 2024
1 parent 6db399b commit 54c64f3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion DBM-Core/DBM-Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ local function currentFullDate()
end

DBM = {
Revision = parseCurseDate("20240716163232"),
Revision = parseCurseDate("20240716165208"),
DisplayVersion = "10.1.12 alpha", -- the string that is shown as version
ReleaseRevision = releaseDate(2024, 02, 21) -- the date of the latest stable version that is available, optionally pass hours, minutes, and seconds for multiple releases in one day
}
Expand Down Expand Up @@ -11281,6 +11281,9 @@ function bossModPrototype:RegisterCombat(cType, ...)
if self.WBEsync then
info.WBEsync = self.WBEsync
end
if self.noBossDeathKill then
info.noBossDeathKill = self.noBossDeathKill
end
-- use pull-mobs as kill mobs by default, can be overriden by RegisterKill
if self.multiMobPullDetection then
for _, v in ipairs(self.multiMobPullDetection) do
Expand Down

0 comments on commit 54c64f3

Please sign in to comment.