mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 02:20:27 +00:00
feat(core\dbc): item.dbc, sItemStore, item_dbc, item enforcement conf, subclass fix (#14675)
feat (core\log\db): item.dbc and enforcement dbc enforcement partial pick from tc:0c44bd33eeCustom Item for testing by menevia16a (SPP DEV VEIL) feat (core\log\db): item.dbc and enforcement Update Item.sql Update DBCStores.cpp Update World.cpp Update ObjectMgr.cpp further replacement from template to dbc lookup further logging and implementation cherry pick tcfd26c3c87creplace with db lookup update (sql): Murder all the backticks line break fixit fix (item_template): fix incorrect subclass fix incorrect subclass matching with dbc enforcement update: log correction for sub class update log correction for sub class add subclass to dbc enforcement add subclass dbc enforcement since it is part of the item.dbc item_dbc update (log): additional log Co-authored-by: blub <trinity.michael_vincent@gmx.eu> Co-authored-by: Shocker <511388+shocker@users.noreply.github.com> Co-authored-by: Veil <1913466+menevia16a@users.noreply.github.com> Co-authored-by: Shocker <43253032+shockerqt@users.noreply.github.com>
This commit is contained in:
15
data/sql/updates/pending_db_world/Item.sql
Normal file
15
data/sql/updates/pending_db_world/Item.sql
Normal file
@@ -0,0 +1,15 @@
|
||||
-- add item_dbc table
|
||||
DROP TABLE IF EXISTS `item_dbc`;
|
||||
CREATE TABLE `item_dbc` ( `ID` INT NOT NULL DEFAULT '0', `ClassID` INT NOT NULL DEFAULT '0', `SubclassID` INT NOT NULL DEFAULT '0', `Sound_Override_Subclassid` INT NOT NULL DEFAULT '0', `Material` INT NOT NULL DEFAULT '0', `DisplayInfoID` INT NOT NULL DEFAULT '0', `InventoryType` INT NOT NULL DEFAULT '0', `SheatheType` INT NOT NULL DEFAULT '0', PRIMARY KEY (`ID`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
-- Corrects subclass error messages
|
||||
UPDATE `item_template` SET `subclass`=4 WHERE `entry`=17;
|
||||
UPDATE `item_template` SET `subclass`=6 WHERE `entry`=2556;
|
||||
UPDATE `item_template` SET `subclass`=0 WHERE `entry`=20221;
|
||||
UPDATE `item_template` SET `subclass`=13 WHERE `entry`=31802;
|
||||
UPDATE `item_template` SET `subclass`=3 WHERE `entry`=33080;
|
||||
UPDATE `item_template` SET `subclass`=3 WHERE `entry`=33604;
|
||||
UPDATE `item_template` SET `subclass`=8 WHERE `entry`=37445;
|
||||
UPDATE `item_template` SET `subclass`=12 WHERE `entry`=37677;
|
||||
UPDATE `item_template` SET `subclass`=7 WHERE `entry`=41749;
|
||||
UPDATE `item_template` SET `subclass`=1 WHERE `entry`=53048;
|
||||
Reference in New Issue
Block a user