From 0f66eb5ee5b9765ff03755b3db93fb2998a39281 Mon Sep 17 00:00:00 2001 From: Aokromes Date: Thu, 11 Dec 2025 17:36:17 +0100 Subject: [PATCH] DB/Creature: Delete a Wendigo npc underground spawned closes #31557 by azerothcore --- sql/updates/world/3.3.5/2025_12_11_03_world.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 sql/updates/world/3.3.5/2025_12_11_03_world.sql diff --git a/sql/updates/world/3.3.5/2025_12_11_03_world.sql b/sql/updates/world/3.3.5/2025_12_11_03_world.sql new file mode 100644 index 00000000000..cafd21511b0 --- /dev/null +++ b/sql/updates/world/3.3.5/2025_12_11_03_world.sql @@ -0,0 +1,4 @@ +-- Remove Wendigo npc underground spawned +DELETE FROM `creature` WHERE `guid`=3564 AND `id`=1135; +-- Remove from spawn_group too +DELETE FROM `spawn_group` WHERE `spawnType`=0 AND `spawnId`=3564;