Skip to content

Commit 32fbb07

Browse files
authored
DB/Gameobject: Fix overlapping Water Barrels/Food Crates in Stormwind City
closes #27079 by CraftedRO
1 parent af4f436 commit 32fbb07

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
--
2+
SET @POOL=594;
3+
DELETE FROM `pool_template` WHERE `entry`=@POOL;
4+
INSERT INTO `pool_template` (`entry`, `max_limit`, `description`) VALUES
5+
(@POOL, 1, "Water Barrel and Food Crate7");
6+
7+
DELETE FROM `pool_members` WHERE `type`=1 AND `poolSpawnId`=@POOL;
8+
INSERT INTO `pool_members` (`type`, `spawnId`, `poolSpawnId`, `chance`, `description`) VALUES
9+
(1, 32287, @POOL, 0, "Water Barrel and Food Crate - Spawn 7"),
10+
(1, 32742, @POOL, 0, "Water Barrel and Food Crate - Spawn 7");

0 commit comments

Comments
 (0)