diff --git a/sql/migrations/20230623143144_world.sql b/sql/migrations/20230623143144_world.sql index cc4a8e95859..6ba7a1f78d4 100644 --- a/sql/migrations/20230623143144_world.sql +++ b/sql/migrations/20230623143144_world.sql @@ -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.