diff options
author | Killyana <morphone1@gmail.com> | 2019-01-30 22:24:14 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-11-23 20:33:09 +0100 |
commit | d410971d8922cb4afacef99c31dfca1ea7398793 (patch) | |
tree | 35f8dd5a920673642a0dffc79e4ecba70d57933a | |
parent | aeb614a21ac7ad627661e6c4c227c5cf02eb08c1 (diff) |
DB/Creature: Blockade Cannon and blockade pirate
Closes #22489
By illfated and ZenoX92
(cherry picked from commit e21a1a68250b7e3d10031c26aa294641b034ffc9)
-rw-r--r-- | sql/updates/world/master/2021_11_23_01_world_2019_01_30_02_world.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_11_23_01_world_2019_01_30_02_world.sql b/sql/updates/world/master/2021_11_23_01_world_2019_01_30_02_world.sql new file mode 100644 index 00000000000..0930ebac593 --- /dev/null +++ b/sql/updates/world/master/2021_11_23_01_world_2019_01_30_02_world.sql @@ -0,0 +1,6 @@ +-- set Rooted state for Blockade Cannon +DELETE FROM `creature_template_movement` WHERE `CreatureId`=23771; +INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`) VALUES +(23771, 1, 1, 0, 1); + +UPDATE `creature_template` SET `flags_extra`=64 WHERE `entry` IN (23755, 23767, 23771); |