From b3287c41066429be726f7725e8481ee6aadaa3f8 Mon Sep 17 00:00:00 2001 From: Alethrion <54462221+Alethrion@users.noreply.github.com> Date: Sun, 3 Mar 2024 15:59:42 -0500 Subject: [PATCH 1/4] fix(DB/World): Creatures not respawning within pools of their own (#18464) * Remove_Yar_From_Pool * sql * Fix_File_Type * Force_Push_Commit * Add_Other_Pools --- data/sql/updates/pending_db_world/Fix_Rare_Respawn.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 data/sql/updates/pending_db_world/Fix_Rare_Respawn.sql diff --git a/data/sql/updates/pending_db_world/Fix_Rare_Respawn.sql b/data/sql/updates/pending_db_world/Fix_Rare_Respawn.sql new file mode 100644 index 000000000..fb166fa5f --- /dev/null +++ b/data/sql/updates/pending_db_world/Fix_Rare_Respawn.sql @@ -0,0 +1,3 @@ +DELETE FROM `pool_creature` WHERE `guid` in (151928,48204,134380,151938,151942); +DELETE FROM `pool_template` WHERE `entry` in (1084,1028,1042,1087,1089); + From ebb8269d65551a0cd1da707842571a1e0b635269 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 3 Mar 2024 21:00:33 +0000 Subject: [PATCH 2/4] chore(DB): import pending files Referenced commit(s): b3287c41066429be726f7725e8481ee6aadaa3f8 --- .../Fix_Rare_Respawn.sql => db_world/2024_03_03_00.sql} | 1 + 1 file changed, 1 insertion(+) rename data/sql/updates/{pending_db_world/Fix_Rare_Respawn.sql => db_world/2024_03_03_00.sql} (77%) diff --git a/data/sql/updates/pending_db_world/Fix_Rare_Respawn.sql b/data/sql/updates/db_world/2024_03_03_00.sql similarity index 77% rename from data/sql/updates/pending_db_world/Fix_Rare_Respawn.sql rename to data/sql/updates/db_world/2024_03_03_00.sql index fb166fa5f..df59710de 100644 --- a/data/sql/updates/pending_db_world/Fix_Rare_Respawn.sql +++ b/data/sql/updates/db_world/2024_03_03_00.sql @@ -1,3 +1,4 @@ +-- DB update 2024_02_27_01 -> 2024_03_03_00 DELETE FROM `pool_creature` WHERE `guid` in (151928,48204,134380,151938,151942); DELETE FROM `pool_template` WHERE `entry` in (1084,1028,1042,1087,1089); From 8936a4aacd2e1b09c1bf5247d4331de87e4163c3 Mon Sep 17 00:00:00 2001 From: sudlud Date: Sun, 3 Mar 2024 22:56:22 +0100 Subject: [PATCH 3/4] fix(DB/Gameobject): Sniffed Values for 'Barber Chair' spawns (#18450) --- .../updates/pending_db_world/rev_1709225636578523600.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1709225636578523600.sql diff --git a/data/sql/updates/pending_db_world/rev_1709225636578523600.sql b/data/sql/updates/pending_db_world/rev_1709225636578523600.sql new file mode 100644 index 000000000..7b72020ff --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1709225636578523600.sql @@ -0,0 +1,7 @@ +-- Update gameobject 'Barber Chair' with sniffed values +-- new spawns +DELETE FROM `gameobject` WHERE (`id` IN (191817)) +AND (`guid` IN (504, 505)); +INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `ScriptName`, `VerifiedBuild`, `Comment`) VALUES +(504, 191817, 530, 0, 0, 1, 1, 2969.0859375, 1773.8885498046875, 139.6904144287109375, 5.365918159484863281, 0, 0, -0.44272327423095703, 0.896658301353454589, 120, 255, 1, "", 45704, NULL), +(505, 191817, 530, 0, 0, 1, 1, 2969.6787109375, 3752.763427734375, 144.5045928955078125, 1.998400807380676269, 0, 0, 0.841038703918457031, 0.540974974632263183, 120, 255, 1, "", 45704, NULL); From 48873da974dd8148e48bb544a9b0388c1dc50cbf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 3 Mar 2024 21:57:10 +0000 Subject: [PATCH 4/4] chore(DB): import pending files Referenced commit(s): 8936a4aacd2e1b09c1bf5247d4331de87e4163c3 --- .../rev_1709225636578523600.sql => db_world/2024_03_03_01.sql} | 1 + 1 file changed, 1 insertion(+) rename data/sql/updates/{pending_db_world/rev_1709225636578523600.sql => db_world/2024_03_03_01.sql} (94%) diff --git a/data/sql/updates/pending_db_world/rev_1709225636578523600.sql b/data/sql/updates/db_world/2024_03_03_01.sql similarity index 94% rename from data/sql/updates/pending_db_world/rev_1709225636578523600.sql rename to data/sql/updates/db_world/2024_03_03_01.sql index 7b72020ff..30284d6a9 100644 --- a/data/sql/updates/pending_db_world/rev_1709225636578523600.sql +++ b/data/sql/updates/db_world/2024_03_03_01.sql @@ -1,3 +1,4 @@ +-- DB update 2024_03_03_00 -> 2024_03_03_01 -- Update gameobject 'Barber Chair' with sniffed values -- new spawns DELETE FROM `gameobject` WHERE (`id` IN (191817))