diff options
author | offl <offl@users.noreply.github.com> | 2022-06-05 01:22:57 +0300 |
---|---|---|
committer | offl <offl@users.noreply.github.com> | 2022-06-05 01:22:57 +0300 |
commit | 222a0ba8ee68c83c8063f1b5eb4287a2c3a515cd (patch) | |
tree | 5f49ccb6401a9d30230a204a21c8b1ed523b3c7b | |
parent | db72ba91678b95906d5528b6cb73490507c779eb (diff) |
DB/Creature: Add missing PvP flag to some creatures
-rw-r--r-- | sql/updates/world/3.3.5/2022_06_05_01_world.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2022_06_05_01_world.sql b/sql/updates/world/3.3.5/2022_06_05_01_world.sql new file mode 100644 index 00000000000..87aa484bf94 --- /dev/null +++ b/sql/updates/world/3.3.5/2022_06_05_01_world.sql @@ -0,0 +1,12 @@ +-- +DELETE FROM `creature_addon` WHERE `guid` IN (SELECT `guid` FROM `creature` WHERE `id` IN (12429,12430)); +UPDATE `creature_addon` SET `bytes2` = `bytes2` |256 WHERE `guid` IN (SELECT `guid` FROM `creature` WHERE `id` IN (5484,26044)); + +UPDATE `creature_template_addon` SET `bytes2` = `bytes2` |256 WHERE `entry` IN (739,927,1182,1444,5661,8140,12423,12427,12428,12429,12430); +DELETE FROM `creature_template_addon` WHERE `entry` IN (1351,5484,5489,12336,26044); +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `MountCreatureID`, `bytes1`, `bytes2`, `emote`, `visibilityDistanceType`, `auras`) VALUES +(1351,0,0,0,0,257,0,0,''), +(5484,0,0,0,0,257,0,0,''), +(5489,0,0,0,0,257,0,0,''), +(12336,0,0,0,0,257,0,0,''), +(26044,0,0,0,0,257,0,0,''); |