mirror of
https://github.com/araxiaonline/awakening-lua.git
synced 2026-06-13 02:22:19 -04:00
12 lines
242 B
Lua
12 lines
242 B
Lua
local function NoSummon(event, player, spell, skipCheck)
|
|
if (player:GetInstanceId() == 0) then
|
|
return false
|
|
elseif (spell:GetEntry() ~= 698) then
|
|
return false
|
|
else
|
|
spell:Cancel()
|
|
end
|
|
end
|
|
|
|
|
|
RegisterPlayerEvent(5, NoSummon) |