From 9cdcccff30eab870c5fb1cf8f49f54b88b7c84c7 Mon Sep 17 00:00:00 2001 From: sogladev Date: Sun, 17 May 2026 00:49:23 +0200 Subject: [PATCH] fix(DB/PlayerShapeshiftModel): Night Elf shapeshift models (#25862) --- .../rev_1778943517143478573.sql | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1778943517143478573.sql diff --git a/data/sql/updates/pending_db_world/rev_1778943517143478573.sql b/data/sql/updates/pending_db_world/rev_1778943517143478573.sql new file mode 100644 index 000000000..c97ee68bd --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1778943517143478573.sql @@ -0,0 +1,19 @@ +-- Update Night Elf shapeshift forms +DELETE FROM `player_shapeshift_model` WHERE (`RaceID` = 4 AND `CustomizationID` IN (3, 5) AND `ShapeshiftID` IN (5, 8)) OR (`RaceID` = 4 AND `CustomizationID` = 5 AND `ShapeshiftID` = 1) OR (`RaceID` = 4 AND `CustomizationID` = 7 AND `ShapeshiftID` IN (5, 8)) OR (`RaceID` = 4 AND `CustomizationID` = 6 AND `ShapeshiftID` = 1); +INSERT INTO `player_shapeshift_model` (`ShapeshiftID`, `RaceID`, `CustomizationID`, `GenderID`, `ModelID`) VALUES +-- light blue hair, bear +(5, 4, 3, 2, 29415), +(8, 4, 3, 2, 29415), +-- blue hair, bear +(5, 4, 5, 2, 29415), +(8, 4, 5, 2, 29415), +-- blue hair, cat +(1, 4, 5, 2, 29406), +-- purple hair, red bear +(5, 4, 7, 2, 29417), +(8, 4, 7, 2, 29417), +-- darkblue hair, black cat +(1, 4, 6, 2, 892); + +-- remove customization id 8 +DELETE FROM `player_shapeshift_model` WHERE `ShapeshiftID`=1 AND `RaceID`=4 AND `CustomizationID`=8 AND `GenderID`=2 AND `ModelID` = 29405;