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:
Wyrserth
2019-07-07 14:21:42 +02:00
committed by Shauren
parent d249a2a98a
commit 57cfc4bbc0
2 changed files with 9 additions and 1 deletions

View File

@@ -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");

View File

@@ -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);