diff options
author | offl <offl@users.noreply.github.com> | 2021-01-25 02:22:22 +0200 |
---|---|---|
committer | offl <offl@users.noreply.github.com> | 2021-01-25 02:22:22 +0200 |
commit | 075d46a46bf1172480730e280106adf4c051371e (patch) | |
tree | 862f4b3c26a4e4ce943c7bd16453b8d39608abb4 | |
parent | 661f554b9e08a3721227f1e4a4fe6fd74e43a1f4 (diff) |
DB/Creature: Fix scale of penguins
-rw-r--r-- | sql/updates/world/3.3.5/2021_01_25_00_world.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2021_01_25_00_world.sql b/sql/updates/world/3.3.5/2021_01_25_00_world.sql new file mode 100644 index 00000000000..548f9a19c9a --- /dev/null +++ b/sql/updates/world/3.3.5/2021_01_25_00_world.sql @@ -0,0 +1,6 @@ +-- +UPDATE `creature_template` SET `scale` = 1 WHERE `entry` IN (28440,32498); +DELETE FROM `creature_template_addon` WHERE `entry` IN (28407,32498); +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `visibilityDistanceType`, `auras`) VALUES +(28407,0,0,0,1,0,0,"51583"), +(32498,0,0,0,1,0,0,"51583"); |