Skip to content

Commit

Permalink
Update 20230623143144_world.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
NickTyrer authored Sep 14, 2023
1 parent 739ae76 commit 84b7e51
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions sql/migrations/20230623143144_world.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1235,9 +1235,16 @@ UPDATE `creature` SET `id` = 8596, `id2` = 8600 WHERE `id` IN (8596, 8600);
-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- Create new pool to hold Small Lockbox spawns in Western Plaguelands.
INSERT INTO `pool_template` (`entry`, `max_limit`, `description`, `patch_min`, `patch_max`) VALUES
(330, 9, 'Western Plaguelands - Small Lockbox', 0, 10);
(146, 9, 'Western Plaguelands - Small Lockbox', 0, 10);
INSERT INTO `pool_gameobject_template` (`id`, `pool_entry`, `description`) VALUES
(175802, 330, 'Western Plaguelands - Small Lockbox');
(175802, 146, 'Western Plaguelands - Small Lockbox');

-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- Create new pool to hold Moontouched Feather spawns in Winterspring
INSERT INTO `pool_template` (`entry`, `max_limit`, `description`, `patch_min`, `patch_max`) VALUES
(151, 30, 'Winterspring - Moontouched Feather', 0, 10);
INSERT INTO `pool_gameobject_template` (`id`, `pool_entry`, `description`) VALUES
(175407, 151, 'Winterspring - Moontouched Feather');


-- End of migration.
Expand Down

0 comments on commit 84b7e51

Please sign in to comment.