fix(DB/Pet Names) - Adjustments to Death Knights Ghoul names (#25201)

Co-authored-by: FlyingArowana <TheSCREWEDSoftware@users.noreply.github.com>
This commit is contained in:
Ryan Turner 2026-03-24 21:49:24 +00:00 committed by GitHub
parent 72cf7b311b
commit bbccf17e5e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,6 @@
-- https://eu.forums.blizzard.com/en/wow/t/unnerf-unholy-dk-pet-names-plz/113162
-- Removes extra 'Stone' from First names for DK Ghouls
DELETE FROM `pet_name_generation` WHERE `id`=261 AND `word` = 'Stone' AND `entry` = 26125 AND `half` = 0;
-- Updates last name 'rawler' to 'crawler' for DK Ghouls
UPDATE `pet_name_generation` SET `word` = 'crawler' WHERE `id` = 308 AND `word` = 'rawler' AND `entry` = 26125 AND `half` = 1;