diff options
author | gygyti <gygyti@users.noreply.github.com> | 2021-09-05 19:50:47 +0300 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-03-14 23:58:21 +0100 |
commit | a972d73ea7fe68499a903e1cf9d0dbf7d0663d5e (patch) | |
tree | 2c4f2af7896305b662b5e4c59bf318aecf86b4ed | |
parent | bb2f283788150f25aaba1a1d2480e982245020c1 (diff) |
DB/Creature: Remove Civilian extra flag from Succubus Minion
Closes #26885
(cherry picked from commit 78005c177b8c47c1327d5f69ab5bdc14b682e217)
-rw-r--r-- | sql/updates/world/master/2022_03_14_05_world_2021_09_05_01_world.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_03_14_05_world_2021_09_05_01_world.sql b/sql/updates/world/master/2022_03_14_05_world_2021_09_05_01_world.sql new file mode 100644 index 00000000000..7e9aba42037 --- /dev/null +++ b/sql/updates/world/master/2022_03_14_05_world_2021_09_05_01_world.sql @@ -0,0 +1,2 @@ +-- Update flags_extra 2 to 0 (civilian to none) +UPDATE `creature_template` SET `flags_extra` = `flags_extra` &~ 2 WHERE `Entry` = 10928; |