mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
8 lines
168 B
Lua
8 lines
168 B
Lua
|
|
local SPELL_ID = 51916
|
||
|
|
|
||
|
|
function OnKilledByCreature(event, killer, killed)
|
||
|
|
killed:CastSpell(killed, SPELL_ID, true)
|
||
|
|
end
|
||
|
|
|
||
|
|
RegisterPlayerEvent(8, OnKilledByCreature)
|