mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-15 10:00:28 +00:00
fix(DB/Creature): Corrects spawn times of various Westfall rare mobs (#8949)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1636045459174422908');
|
||||
|
||||
# Sets spawntime of Sergeant Brashclaw to 2.5 hours
|
||||
UPDATE `creature` SET `spawntimesecs` = 9000 WHERE `id` = 506;
|
||||
|
||||
# Sets spawntime of Slark to 2 hours
|
||||
UPDATE `creature` SET `spawntimesecs` = 7200 WHERE `id` = 519;
|
||||
|
||||
# Sets spawntime of Brack to 2.5 hours
|
||||
UPDATE `creature` SET `spawntimesecs` = 9000 WHERE `id` = 520;
|
||||
|
||||
# Sets spawntime of Foe Reaper 4000 to 5 hours
|
||||
UPDATE `creature` SET `spawntimesecs` = 18000 WHERE `id` = 573;
|
||||
|
||||
# Sets spawntime of Master Digger to 2 hours
|
||||
UPDATE `creature` SET `spawntimesecs` = 7200 WHERE `id` = 1424;
|
||||
Reference in New Issue
Block a user