mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-23 18:36:31 +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:
@@ -0,0 +1,9 @@
|
||||
-- ALTER TABLE db_version CHANGE COLUMN required_7945_01_mangos_quest_template required_7980_01_mangos_item_required_target bit;
|
||||
|
||||
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
|
||||
Reference in New Issue
Block a user