Skip to content

Commit 9cdcccf

Browse files
authored
fix(DB/PlayerShapeshiftModel): Night Elf shapeshift models (azerothcore#25862)
1 parent 0760168 commit 9cdcccf

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
-- Update Night Elf shapeshift forms
2+
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);
3+
INSERT INTO `player_shapeshift_model` (`ShapeshiftID`, `RaceID`, `CustomizationID`, `GenderID`, `ModelID`) VALUES
4+
-- light blue hair, bear
5+
(5, 4, 3, 2, 29415),
6+
(8, 4, 3, 2, 29415),
7+
-- blue hair, bear
8+
(5, 4, 5, 2, 29415),
9+
(8, 4, 5, 2, 29415),
10+
-- blue hair, cat
11+
(1, 4, 5, 2, 29406),
12+
-- purple hair, red bear
13+
(5, 4, 7, 2, 29417),
14+
(8, 4, 7, 2, 29417),
15+
-- darkblue hair, black cat
16+
(1, 4, 6, 2, 892);
17+
18+
-- remove customization id 8
19+
DELETE FROM `player_shapeshift_model` WHERE `ShapeshiftID`=1 AND `RaceID`=4 AND `CustomizationID`=8 AND `GenderID`=2 AND `ModelID` = 29405;

0 commit comments

Comments
 (0)