mirror of
https://github.com/ProjectSkyfire/SkyFire_548
synced 2026-08-18 06:32:13 -04:00
Database: Fix invisible Corithras Moonrage in Dolanaar
The Dolanaar spawn of Corithras Moonrage (entry 3515, guid 138764) carries aura 85813 in `creature_addon`. It is the only row in the world database referencing that spell, and it hides the questgiver from players entirely. Clear the aura and leave the rest of the addon row intact.
This commit is contained in:
parent
0a620ab975
commit
0702deb0a7
1 changed files with 10 additions and 0 deletions
|
|
@ -0,0 +1,10 @@
|
|||
-- Corithras Moonrage (entry 3515) is invisible in Dolanaar.
|
||||
--
|
||||
-- His Dolanaar spawn (guid 138764) carries aura 85813 in `creature_addon`. It is the only row
|
||||
-- in the world database referencing that spell. The aura hides the questgiver from players
|
||||
-- completely: the creature is spawned server side, but is never sent to the client, so it also
|
||||
-- never reaches the client's creaturecache.wdb. `.npc add 3515` produces a visible copy, since
|
||||
-- a fresh spawn has no `creature_addon` row.
|
||||
--
|
||||
-- Clear the aura only and leave the rest of the addon row untouched.
|
||||
UPDATE `creature_addon` SET `auras`=NULL WHERE `guid`=138764;
|
||||
Loading…
Add table
Add a link
Reference in a new issue