fix(DB/Quest): "Defeat the Gearmaster" / "The Gearmaster" (#1894)

* despawn game object "The Gearmaster's Manual" after usage
* Despawn "Gearmaster  Mechazod" after 300 seconds instead of 3000 seconds as it was before
This commit is contained in:
Stoabrogga
2019-06-02 14:00:22 +02:00
committed by Poszer
parent e6750f9b78
commit 78f4e71894

View File

@@ -0,0 +1,7 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1558943884011471260');
-- Despawn "Gearmaster Mechazod" after 300 seconds (was 3000 seconds before)
UPDATE `event_scripts` SET `datalong2` = 300000 WHERE `id` = 17209 AND `command` = 10;
-- Ensure that "The Gearmaster's Manual" is consumable (both Horde and Alliance version)
UPDATE `gameobject_template` SET `Data5` = 1 WHERE `entry` IN (190334,190335);