mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 18:15:31 +01:00
DB/Gameobject: Fix overlapping Water Barrels/Food Crates in Stormwind City
closes #27079 by CraftedRO
This commit is contained in:
10
sql/updates/world/3.3.5/2025_03_31_04_world.sql
Normal file
10
sql/updates/world/3.3.5/2025_03_31_04_world.sql
Normal 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");
|
||||
Reference in New Issue
Block a user