fix(DB/creature/quests): Remove Tormek Stoneriver and his quests (#4578)
This commit is contained in:
parent
7292a68ec7
commit
53fd72a337
1 changed files with 15 additions and 0 deletions
|
|
@ -0,0 +1,15 @@
|
|||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1613390656721660682');
|
||||
|
||||
-- Tormek Stoneriver was removed in v3.3.0
|
||||
DELETE FROM `creature` WHERE `guid`=244510;
|
||||
|
||||
-- Quests 'Dearest Colara,' should be marked as deprecated
|
||||
DELETE FROM `disables` WHERE `sourceType`=1 AND `entry` IN (8897,8898,8899);
|
||||
INSERT INTO `disables` (`sourceType`, `entry`, `flags`, `params_0`, `params_1`, `comment`) VALUES
|
||||
(1,8897,0,"","","Deprecated quest: Dearest Colara,"),
|
||||
(1,8898,0,"","","Deprecated quest: Dearest Colara,"),
|
||||
(1,8899,0,"","","Deprecated quest: Dearest Colara,");
|
||||
|
||||
-- Remove creature/quest relationship
|
||||
DELETE FROM `creature_queststarter` WHERE `quest` IN (8897,8898,8899);
|
||||
DELETE FROM `creature_questender` WHERE `quest` IN (8897,8898,8899);
|
||||
Loading…
Add table
Add a link
Reference in a new issue