diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2025-09-27 12:05:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-27 12:05:21 +0200 |
commit | 397750591a7d2441514006ff77cabf570eb1ccb9 (patch) | |
tree | 86c6ec173a16c67db14fa8d7b6b99741a9d030cb | |
parent | 6057f339229742476011a2ec046f327f08aac82c (diff) |
DB/Gameobject: Delete wrong vein spawn in Icecrown
closes #31308
by Jildor
-rw-r--r-- | sql/updates/world/3.3.5/2025_09_27_00_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2025_09_27_00_world.sql b/sql/updates/world/3.3.5/2025_09_27_00_world.sql new file mode 100644 index 00000000000..2f8a8de7e4b --- /dev/null +++ b/sql/updates/world/3.3.5/2025_09_27_00_world.sql @@ -0,0 +1,5 @@ +-- +DELETE FROM `pool_members` WHERE `type`=1 AND `spawnId` IN (163412,163812,164212); +DELETE FROM `pool_members` WHERE `type`=2 AND `spawnId`=11612; +DELETE FROM `spawn_group` WHERE `spawnType`=1 AND `spawnId` IN (163412,163812,164212); +DELETE FROM `gameobject` WHERE `guid` IN (163412,163812,164212); |