diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2017-11-06 22:38:11 +0100 |
---|---|---|
committer | funjoker <funjoker109@gmail.com> | 2021-01-29 19:23:53 +0100 |
commit | b14be7e985c4c3042c6d0e5081f9a4cbb25c149b (patch) | |
tree | aae73a69ee70c29430110a90b62de232fc30618a | |
parent | bf12bae46746149d870cd3e52ccd610f0a975047 (diff) |
DB/Creature: Fix levels for multiple creatures
By Malcrom
(cherry picked from commit 859b0d92a0eb6fef802e4cfb14c02dcc40b04787)
-rw-r--r-- | sql/updates/world/master/2021_01_25_06_world_2017_11_06_02_world.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_01_25_06_world_2017_11_06_02_world.sql b/sql/updates/world/master/2021_01_25_06_world_2017_11_06_02_world.sql new file mode 100644 index 00000000000..713afdd7d51 --- /dev/null +++ b/sql/updates/world/master/2021_01_25_06_world_2017_11_06_02_world.sql @@ -0,0 +1,6 @@ +-- The Mechanar +UPDATE `creature_template` SET `minlevel`=70 WHERE `entry` IN (21523); -- Bloodwarder Physician (1) +UPDATE `creature_template` SET `maxlevel`=70 WHERE `entry` IN (21539); -- Sunseeker Astromage (1) +-- Arcatraz +UPDATE `creature_template` SET `minlevel`=68,`maxlevel`=69 WHERE `entry` IN (21585); -- Arcatraz Defender (1) +UPDATE `creature_template` SET `maxlevel`=68,`maxlevel`=69 WHERE `entry` IN (21587); -- Arcatraz Warder (1) |