fix(DB/creature_text) Remove Quel'dorei Ghosts/Wraiths broadcast_text 12690 (#19542)
* fix(DB) Added missing emote text for text 12690 - Male text was missing for Quel'dorei Ghosts/Wraiths - Closes #19480 * added sql statement * Changed implementation from broadcast_text to creature_text * Added comment for quick explanation * Added new line after SQL statement as per request in comments * changing comments so sql check hopefully passes * changed from delete and insert into single update * Update rev_1722505977523322600.sql
This commit is contained in:
@@ -0,0 +1,10 @@
|
|||||||
|
-- Removes creature reference to broadcast text
|
||||||
|
/*
|
||||||
|
https://www.azerothcore.org/wiki states that broadcast text table contains only confirmed retail data.
|
||||||
|
So to avoid polluting the table issue #19480 is being fixed in creature_text table instead.
|
||||||
|
More info in issue #19480 and PR #19542
|
||||||
|
*/
|
||||||
|
UPDATE `creature_text` SET
|
||||||
|
`BroadcastTextId` = 0,
|
||||||
|
`comment` = CONCAT(`comment`, ', removed BroadcastTextId 12690 (more info in PR#19542)')
|
||||||
|
WHERE `CreatureID` IN (16325, 16326);
|
||||||
Reference in New Issue
Block a user