mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 10:05:32 +01:00
Core/Creatures: Fixed trainers that don't use gossip but open trainer list directly from CMSG_TRAINER_LIST
This commit is contained in:
9
sql/updates/world/master/2017_08_20_00_world.sql
Normal file
9
sql/updates/world/master/2017_08_20_00_world.sql
Normal 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;
|
||||
Reference in New Issue
Block a user