Core/Creatures: Fixed trainers that don't use gossip but open trainer list directly from CMSG_TRAINER_LIST

This commit is contained in:
Shauren
2017-08-20 14:11:51 +02:00
parent 6a296c7c91
commit fb1fdf27b9
8 changed files with 75 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
--
-- Table structure for table `creature_default_trainer`
--
DROP TABLE IF EXISTS `creature_default_trainer`;
CREATE TABLE `creature_default_trainer` (
`CreatureId` int(11) UNSIGNED NOT NULL,
`TrainerId` int(11) UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (`CreatureId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;