mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 17:05:44 +01:00
Another fix quest flags, Implement support weekly quests cooldowns(Original patch by GriffonHeart), also code cleanups.
--HG-- branch : trunk
This commit is contained in:
@@ -913,6 +913,27 @@ LOCK TABLES `character_queststatus_daily` WRITE;
|
||||
/*!40000 ALTER TABLE `character_queststatus_daily` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `character_queststatus_weekly`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `character_queststatus_weekly`;
|
||||
CREATE TABLE `character_queststatus_weekly` (
|
||||
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
|
||||
`quest` int(11) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
|
||||
PRIMARY KEY (`guid`,`quest`),
|
||||
KEY `idx_guid` (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
|
||||
|
||||
--
|
||||
-- Dumping data for table `character_queststatus_weekly`
|
||||
--
|
||||
|
||||
LOCK TABLES `character_queststatus_weekly` WRITE;
|
||||
/*!40000 ALTER TABLE `character_queststatus_weekly` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_queststatus_weekly` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `character_reputation`
|
||||
--
|
||||
@@ -1915,6 +1936,7 @@ DROP TABLE IF EXISTS `worldstates`;
|
||||
CREATE TABLE `worldstates` (
|
||||
`entry` mediumint(11) UNSIGNED NOT NULL DEFAULT '0',
|
||||
`value` bigint(40) UNSIGNED NOT NULL DEFAULT '0',
|
||||
`NextWeeklyQuestResetTime` bigint(40) unsigned NOT NULL default '0',
|
||||
`comment` text NOT NULL,
|
||||
PRIMARY KEY (`entry`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Variable Saves';
|
||||
|
||||
Reference in New Issue
Block a user