diff options
author | Killyana <morphone1@gmail.com> | 2019-01-30 22:24:14 +0100 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2019-01-30 22:24:14 +0100 |
commit | e21a1a68250b7e3d10031c26aa294641b034ffc9 (patch) | |
tree | 1ed748882a40153d087da21f4535bce107d0276c | |
parent | d8572e1fb804f6e8c1f794a9f0c94d84cb13bb2b (diff) |
DB/Creature: Blockade Cannon and blockade pirate
Closes #22489
By illfated and ZenoX92
-rw-r--r-- | sql/updates/world/3.3.5/2019_01_30_02_world.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2019_01_30_02_world.sql b/sql/updates/world/3.3.5/2019_01_30_02_world.sql new file mode 100644 index 00000000000..0930ebac593 --- /dev/null +++ b/sql/updates/world/3.3.5/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); |