From db79c33064caef36d911d5de04506497df65650f Mon Sep 17 00:00:00 2001 From: kasvati <96998760+kasvati@users.noreply.github.com> Date: Wed, 28 Aug 2024 20:20:22 +0200 Subject: [PATCH] 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 --- .../pending_db_world/rev_1722505977523322600.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1722505977523322600.sql diff --git a/data/sql/updates/pending_db_world/rev_1722505977523322600.sql b/data/sql/updates/pending_db_world/rev_1722505977523322600.sql new file mode 100644 index 000000000..3033640ce --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1722505977523322600.sql @@ -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);