Core/Creatures: Implemented sending different creature id for summoner (#28066)

Co-authored-by: Shauren <shauren.trinity@gmail.com>
This commit is contained in:
Teleqraph
2022-07-03 16:00:14 +02:00
committed by GitHub
parent 9fcf920d0e
commit ebf1b6eb5c
9 changed files with 153 additions and 2 deletions

View 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);