mirror of
https://github.com/araxiaonline/AzerothCore-wotlk-with-NPCBots.git
synced 2026-06-13 03:22:24 -04:00
fix(DB/PlayerShapeshiftModel): Night Elf shapeshift models (#25862)
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user