mirror of
https://github.com/azerothcore/mod-progression-system
synced 2026-08-21 06:23:04 -04:00
Comment out TBC profession trainer SQL changes
The SQL statements for restoring TBC profession trainer items have been commented out, effectively disabling their execution. This may be for testing, rollback, or to temporarily prevent these changes from being applied.
This commit is contained in:
parent
b7ed6632b1
commit
cf97553a47
1 changed files with 28 additions and 28 deletions
|
|
@ -1,29 +1,29 @@
|
|||
-- Restore following TBC items from trainers (re-added in Black Temple)
|
||||
DELETE FROM `npc_trainer` WHERE `SpellID` IN (
|
||||
36257, -- Bulwark of the Ancient Kings
|
||||
40274, -- Furious Gizmatic Goggles
|
||||
41311, -- Justicebringer 2000 Specs
|
||||
41312, -- Tankatronic Goggles
|
||||
41314, -- Surestrike Goggles v2.0
|
||||
41315, -- Gadgetstorm Goggles
|
||||
41316, -- Living Replicator Specs
|
||||
41317, -- Deathblow X11 Goggles
|
||||
41318, -- Wonderheal XT40 Shades
|
||||
41319, -- Magnified Moon Specs
|
||||
41320, -- Destruction Holo-gogs
|
||||
41321 -- Powerheal 4000 Lens
|
||||
);
|
||||
INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`, `ReqSpell`) VALUES
|
||||
(29506, 36257, 500000, 164, 375, 0, 0),
|
||||
(201007, 36257, 500000, 164, 375, 0, 0),
|
||||
(201013, 40274, 50000, 202, 350, 0, 0),
|
||||
(201013, 41311, 50000, 202, 350, 0, 0),
|
||||
(201013, 41312, 50000, 202, 350, 0, 0),
|
||||
(201013, 41314, 50000, 202, 350, 0, 0),
|
||||
(201013, 41315, 50000, 202, 350, 0, 0),
|
||||
(201013, 41316, 50000, 202, 350, 0, 0),
|
||||
(201013, 41317, 50000, 202, 350, 0, 0),
|
||||
(201013, 41318, 50000, 202, 350, 0, 0),
|
||||
(201013, 41319, 50000, 202, 350, 0, 0),
|
||||
(201013, 41320, 50000, 202, 350, 0, 0),
|
||||
(201013, 41321, 50000, 202, 350, 0, 0);
|
||||
-- DELETE FROM `npc_trainer` WHERE `SpellID` IN (
|
||||
-- 36257, -- Bulwark of the Ancient Kings
|
||||
-- 40274, -- Furious Gizmatic Goggles
|
||||
-- 41311, -- Justicebringer 2000 Specs
|
||||
-- 41312, -- Tankatronic Goggles
|
||||
-- 41314, -- Surestrike Goggles v2.0
|
||||
-- 41315, -- Gadgetstorm Goggles
|
||||
-- 41316, -- Living Replicator Specs
|
||||
-- 41317, -- Deathblow X11 Goggles
|
||||
-- 41318, -- Wonderheal XT40 Shades
|
||||
-- 41319, -- Magnified Moon Specs
|
||||
-- 41320, -- Destruction Holo-gogs
|
||||
-- 41321 -- Powerheal 4000 Lens
|
||||
-- );
|
||||
-- INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`, `ReqSpell`) VALUES
|
||||
-- (29506, 36257, 500000, 164, 375, 0, 0),
|
||||
-- (201007, 36257, 500000, 164, 375, 0, 0),
|
||||
-- (201013, 40274, 50000, 202, 350, 0, 0),
|
||||
-- (201013, 41311, 50000, 202, 350, 0, 0),
|
||||
-- (201013, 41312, 50000, 202, 350, 0, 0),
|
||||
-- (201013, 41314, 50000, 202, 350, 0, 0),
|
||||
-- (201013, 41315, 50000, 202, 350, 0, 0),
|
||||
-- (201013, 41316, 50000, 202, 350, 0, 0),
|
||||
-- (201013, 41317, 50000, 202, 350, 0, 0),
|
||||
-- (201013, 41318, 50000, 202, 350, 0, 0),
|
||||
-- (201013, 41319, 50000, 202, 350, 0, 0),
|
||||
-- (201013, 41320, 50000, 202, 350, 0, 0),
|
||||
-- (201013, 41321, 50000, 202, 350, 0, 0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue