(fix/DBM): wipe and kill callback registration for older DBM versions

Corrects the callback names from 'wipe' and 'kill' to 'DBM_Wipe' and 'DBM_Kill' to ensure proper event handling with DBM.
This commit is contained in:
NoM0Re 2025-07-09 23:16:40 +02:00
parent a749a08e94
commit e0d0579d29

View file

@ -362,8 +362,8 @@ Private.ExecEnv.BossMods.DBM = {
self:RegisterCallback("DBM_TimerStart")
self:RegisterCallback("DBM_TimerStop")
self:RegisterCallback("DBM_TimerUpdate")
self:RegisterCallback("wipe")
self:RegisterCallback("kill")
self:RegisterCallback("DBM_Wipe")
self:RegisterCallback("DBM_Kill")
end
end,