mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Creatures: Implemented sending different creature id for summoner (#28066)
Co-authored-by: Shauren <shauren.trinity@gmail.com>
This commit is contained in:
18
sql/updates/world/master/2022_07_03_00_world.sql
Normal file
18
sql/updates/world/master/2022_07_03_00_world.sql
Normal file
@@ -0,0 +1,18 @@
|
||||
--
|
||||
-- Table structure for table `creature_summoned_data`
|
||||
--
|
||||
DROP TABLE IF EXISTS `creature_summoned_data`;
|
||||
CREATE TABLE `creature_summoned_data` (
|
||||
`CreatureID` int unsigned NOT NULL,
|
||||
`CreatureIDVisibleToSummoner` int DEFAULT NULL,
|
||||
`GroundMountDisplayID` int unsigned DEFAULT NULL,
|
||||
`FlyingMountDisplayID` int unsigned DEFAULT NULL,
|
||||
PRIMARY KEY (`CreatureID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Dumping data for table `creature_summoned_data`
|
||||
--
|
||||
INSERT INTO `creature_summoned_data` VALUES
|
||||
(90382,90240,54563,46930),
|
||||
(91911,91913,59339,NULL);
|
||||
Reference in New Issue
Block a user