diff options
| author | offl <offl@users.noreply.github.com> | 2021-01-23 02:35:56 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2022-03-06 01:22:59 +0100 |
| commit | 42c52538cd005c4816820738e771413140917c20 (patch) | |
| tree | 376a6f247232a6112c298b6ff76d02eaea638318 | |
| parent | 9ada934e40e1ca76ec1b06a969ebffec822b5be2 (diff) | |
DB/Creature: Remove UNIT_DYNFLAG_TAPPED_BY_PLAYER
Ref #25764
(cherry picked from commit 5d17697687454a4c46bf85fdf12a06b9bf84e4ec)
| -rw-r--r-- | sql/updates/world/master/2022_03_05_94_world_2021_01_23_01_world.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_03_05_94_world_2021_01_23_01_world.sql b/sql/updates/world/master/2022_03_05_94_world_2021_01_23_01_world.sql new file mode 100644 index 00000000000..9aead6f54e9 --- /dev/null +++ b/sql/updates/world/master/2022_03_05_94_world_2021_01_23_01_world.sql @@ -0,0 +1,3 @@ +-- +UPDATE `creature` SET `dynamicflags` = `dynamicflags` &~ 8 WHERE `dynamicflags` & 8; +UPDATE `creature_template` SET `dynamicflags` = `dynamicflags` &~ 8 WHERE `dynamicflags` & 8; |
