From a36e8a3605add055196017011e6472cc0abe1f5d Mon Sep 17 00:00:00 2001 From: The GhostRider Date: Sat, 17 Jun 2023 15:36:06 +0100 Subject: [PATCH] Fix(DB/Events): Disable LoS for Cluster Launcher (#16476) * Fix(DB/GameObjects): Cluster Launcher * Update rev_1685926790862483900.sql * Update rev_1685926790862483900.sql * fix: my mistake * Update rev_1685926790862483900.sql --- data/sql/updates/pending_db_world/rev_1685926790862483900.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1685926790862483900.sql diff --git a/data/sql/updates/pending_db_world/rev_1685926790862483900.sql b/data/sql/updates/pending_db_world/rev_1685926790862483900.sql new file mode 100644 index 000000000..a6981dff0 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1685926790862483900.sql @@ -0,0 +1,3 @@ +-- Fix Disable LOS from the Spell 26522 (Lunar Fortune) -- +DELETE FROM `disables` WHERE `sourceType`=0 AND `entry`=26522; +INSERT INTO `disables` (`sourceType`, `entry`, `flags`, `params_0`, `params_1`, `comment`) VALUES (0, 26522, 64, '', '', 'Disable LOS for Lunar Fortune');