Files
awakening-lua/Misc/OrcFix.lua
2024-05-17 23:27:34 +00:00

11 lines
335 B
Lua

--TEMP USED THIS ONE FOR FIXING SEABISCUIT LEARN SPELL--
RegisterPlayerEvent(28, function(event,player)
if (player:HasSpell(966004)) then
player:LearnSpell(966002)
player:RemoveSpell(966004)
end
if not(player:HasSpell(500000)) then -- Father asked me to make this always learned
player:LearnSpell(500000)
end
end)