mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-18 11:25:42 +00:00
fix(DB/Gameobject): remove duplicate spawn from Razormaw Matriach's Nest (#7706)
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1630682164924984301');
|
||||
|
||||
-- Removed one of the spawns of Razormaw Matriach's Nest because its on the same place as the guid 6245
|
||||
DELETE FROM `gameobject` WHERE (`id` = 202083) AND (`guid` IN (14999));
|
||||
|
||||
-- Added the spawns to the same pool so only 1 can be spawned at the same time
|
||||
DELETE FROM `pool_template` WHERE `entry` = 374;
|
||||
INSERT INTO `pool_template` (`entry`, `max_limit`, `description`) VALUES (374, 1, 'Razormaw Matriach''s Nest spawns');
|
||||
|
||||
DELETE FROM `pool_gameobject` WHERE `guid` IN (6245, 6246, 6247, 6248);
|
||||
INSERT INTO `pool_gameobject` (`guid`, `pool_entry`, `chance`, `description`) VALUES
|
||||
(6245, 374, 0, 'Razormaw Matriach''s Nest spawn 1'),
|
||||
(6246, 374, 0, 'Razormaw Matriach''s Nest spawn 2'),
|
||||
(6247, 374, 0, 'Razormaw Matriach''s Nest spawn 3'),
|
||||
(6248, 374, 0, 'Razormaw Matriach''s Nest spawns 4');
|
||||
|
||||
-- Removing the pool and spawn of the guid 14999
|
||||
DELETE FROM `pool_gameobject` WHERE `guid` = 14999;
|
||||
DELETE FROM `pool_template` WHERE `entry` = 202482;
|
||||
|
||||
Reference in New Issue
Block a user