mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-24 14:16:31 +00:00
fix(DB/Gameobject): overlapping Water Barrels/Food Crates in Stormwind City (#7705)
- Fixes #6646
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1630679189870696600');
|
||||
|
||||
SET @POOL = 60010;
|
||||
SET @WATERBARREL = 32742;
|
||||
SET @FOODCRATE = 32287;
|
||||
|
||||
DELETE FROM `pool_template` WHERE `entry`=@POOL;
|
||||
INSERT INTO `pool_template` (`entry`, `max_limit`, `description`) VALUES
|
||||
(@POOL, 1, 'Water Barrel (29275) / Food Crate (30758) - Stormwind City');
|
||||
|
||||
DELETE FROM `pool_gameobject`WHERE `pool_entry`=@POOL;
|
||||
INSERT INTO `pool_gameobject` (`guid`, `pool_entry`, `chance`, `description`) VALUES
|
||||
(@WATERBARREL, @POOL, 0, 'Water Barrel (29275) - Stormwind City'),
|
||||
(@FOODCRATE, @POOL, 0, 'Food Crate (30758) - Stormwind City');
|
||||
Reference in New Issue
Block a user