mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 00:48:56 +01:00
[7980] Implement item use target requirements store and check (new table item_required_target). Author: NoFantasy
Signed-off-by: VladimirMangos <vladimir@getmangos.com> * Also implement this table reload * Static Spell::SendCastResult function for call not from spell code. Can be also used in scripts where need send explicitly spell cast error to client. --HG-- branch : trunk
This commit is contained in:
@@ -23,7 +23,7 @@ DROP TABLE IF EXISTS `db_version`;
|
||||
CREATE TABLE `db_version` (
|
||||
`version` varchar(120) default NULL,
|
||||
`creature_ai_version` varchar(120) default NULL,
|
||||
`required_7945_01_mangos_quest_template` bit(1) default NULL
|
||||
`required_7980_01_mangos_item_required_target` bit(1) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
|
||||
|
||||
--
|
||||
@@ -1658,6 +1658,27 @@ LOCK TABLES `item_loot_template` WRITE;
|
||||
/*!40000 ALTER TABLE `item_loot_template` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `item_required_target`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `item_required_target`;
|
||||
CREATE TABLE `item_required_target` (
|
||||
`entry` mediumint(8) unsigned NOT NULL,
|
||||
`type` tinyint(3) unsigned NOT NULL default '0',
|
||||
`targetEntry` mediumint(8) unsigned NOT NULL default '0',
|
||||
UNIQUE KEY `entry_type_target` (`entry`,`type`,`targetEntry`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED
|
||||
|
||||
--
|
||||
-- Dumping data for table `item_required_target`
|
||||
--
|
||||
|
||||
LOCK TABLES `item_required_target` WRITE;
|
||||
/*!40000 ALTER TABLE `item_required_target` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `item_required_target` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `item_template`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user