DB/Gameobject: Fix overlapping Water Barrels/Food Crates in Stormwind City

closes  #27079
by CraftedRO
This commit is contained in:
Aokromes
2025-03-31 20:12:20 +02:00
committed by GitHub
parent af4f436206
commit 32fbb07158

View File

@@ -0,0 +1,10 @@
--
SET @POOL=594;
DELETE FROM `pool_template` WHERE `entry`=@POOL;
INSERT INTO `pool_template` (`entry`, `max_limit`, `description`) VALUES
(@POOL, 1, "Water Barrel and Food Crate7");
DELETE FROM `pool_members` WHERE `type`=1 AND `poolSpawnId`=@POOL;
INSERT INTO `pool_members` (`type`, `spawnId`, `poolSpawnId`, `chance`, `description`) VALUES
(1, 32287, @POOL, 0, "Water Barrel and Food Crate - Spawn 7"),
(1, 32742, @POOL, 0, "Water Barrel and Food Crate - Spawn 7");