mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 18:40:28 +00:00
fix(Core/Spells): Fixed players being able to mount with all transfor… (#11767)
…m auras. Co-authored-by: Shauren <shauren.trinity@gmail.com>
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
--
|
||||
DROP TABLE IF EXISTS `creaturedisplayinfoextra_dbc`;
|
||||
CREATE TABLE `creaturedisplayinfoextra_dbc`
|
||||
( `ID` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`DisplayRaceID` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`DisplaySexID` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`SkinID` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`FaceID` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`HairStyleID` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`HairColorID` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`FacialHairID` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`NPCItemDisplay1` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`NPCItemDisplay2` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`NPCItemDisplay3` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`NPCItemDisplay4` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`NPCItemDisplay5` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`NPCItemDisplay6` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`NPCItemDisplay7` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`NPCItemDisplay8` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`NPCItemDisplay9` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`NPCItemDisplay10` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`NPCItemDisplay11` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`Flags` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`BakeName` VARCHAR(100) NOT NULL,
|
||||
PRIMARY KEY (`ID`) )
|
||||
ENGINE=MYISAM CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
Reference in New Issue
Block a user