mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-24 19:06:49 +01:00
Add forgotten change to world.sql and update script for scarlet ghouls (quest 12698) so they are in defensive mode. Also make it so, if you abandon the quest, you don't get to keep your minions... Still need some official info on these, if anyone can help.
--HG-- branch : trunk
This commit is contained in:
@@ -2599,6 +2599,7 @@ DROP TABLE IF EXISTS `script_texts`;
|
||||
SET @saved_cs_client = @@character_set_client;
|
||||
SET character_set_client = utf8;
|
||||
CREATE TABLE `script_texts` (
|
||||
`npc_entry` mediumint(8) NOT NULL default '0' COMMENT 'creature_template entry',
|
||||
`entry` mediumint(8) NOT NULL,
|
||||
`content_default` text NOT NULL,
|
||||
`content_loc1` text,
|
||||
@@ -2614,10 +2615,11 @@ CREATE TABLE `script_texts` (
|
||||
`language` tinyint(3) unsigned NOT NULL default '0',
|
||||
`emote` smallint(5) unsigned NOT NULL default '0',
|
||||
`comment` text,
|
||||
PRIMARY KEY (`entry`)
|
||||
PRIMARY KEY (`npc_entry`,`entry`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Texts';
|
||||
SET character_set_client = @saved_cs_client;
|
||||
|
||||
|
||||
--
|
||||
-- Table structure for table `script_waypoint`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user