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:
kasvati
2024-08-28 20:20:22 +02:00
committed by GitHub
parent 1d56e84fb9
commit db79c33064

View File

@@ -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);