mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
10 lines
258 B
Lua
10 lines
258 B
Lua
|
|
local frostbroodWhelps = {};
|
||
|
|
|
||
|
|
function frostbroodWhelps.OnSpawn(event, creature)
|
||
|
|
creature:CanFly(true)
|
||
|
|
creature:SetDisableGravity(true)
|
||
|
|
end
|
||
|
|
|
||
|
|
RegisterCreatureEvent(400057, 5, frostbroodWhelps.OnSpawn)
|
||
|
|
|
||
|
|
RegisterCreatureEvent(16531, 5, frostbroodWhelps.OnSpawn)
|