mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
DB/Creature: prevent floating Gjalerbron Prisoners from falling to the ground.
Also fix mistake in DELETE query for previously committed SQL file.
(cherry picked from commit d18b7572f4)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
--
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`="spell_frostbomb";
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`="spell_urom_frostbomb";
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(51103, "spell_urom_frostbomb");
|
||||
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
--
|
||||
DELETE FROM `creature_movement_override` WHERE `SpawnId` IN (117664, 117670, 117671, 117672, 117677);
|
||||
INSERT INTO `creature_movement_override` (`SpawnId`, `Ground`, `Swim`, `Flight`, `Rooted`) VALUES
|
||||
(117664, 1, 0, 1, 0),
|
||||
(117670, 1, 0, 1, 0),
|
||||
(117671, 1, 0, 1, 0),
|
||||
(117672, 1, 0, 1, 0),
|
||||
(117677, 1, 0, 1, 0);
|
||||
Reference in New Issue
Block a user