mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-23 02:25:38 +01:00
Add sql update for creature respawn linking.
--HG-- branch : trunk
This commit is contained in:
10
sql/updates/1362_world.sql
Normal file
10
sql/updates/1362_world.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
DROP TABLE IF EXISTS `creature_linked_respawn`;
|
||||
CREATE TABLE `creature_linked_respawn` (
|
||||
`guid` int(10) unsigned NOT NULL COMMENT 'dependent creature',
|
||||
`linkedGuid` int(10) unsigned NOT NULL COMMENT 'master creature',
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature Respawn Link System';
|
||||
|
||||
DELETE FROM `trinity_string` WHERE `entry` = '750';
|
||||
INSERT INTO `trinity_string` (`entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`) VALUES
|
||||
('750', 'linkGUID: %u, Entry: %u (%s)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
||||
Reference in New Issue
Block a user