aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorfunjoker <torti-esser@web.de>2018-04-12 21:57:49 +0200
committerShauren <shauren.trinity@gmail.com>2018-04-12 22:57:49 +0300
commit24f51f65860d6c9dd0ee055dca93ed39dd29c687 (patch)
tree975ad09dc31dd4ce275bbb6efd9044fd0a61f126 /sql
parent1aa42e97a81e285fa34316ad9cfe9657865e3c35 (diff)
Core/Creatures: Update Scaling to 7.3.5 (#21521)
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2018_04_12_00_world.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/master/2018_04_12_00_world.sql b/sql/updates/world/master/2018_04_12_00_world.sql
new file mode 100644
index 00000000000..caef73a3d74
--- /dev/null
+++ b/sql/updates/world/master/2018_04_12_00_world.sql
@@ -0,0 +1,5 @@
+ALTER TABLE `creature_template_scaling`
+ CHANGE `LevelScalingDelta` `LevelScalingDeltaMin` smallint(5) NOT NULL DEFAULT '0' AFTER `LevelScalingMax`,
+ ADD `LevelScalingDeltaMax` smallint(5) NOT NULL DEFAULT '0' AFTER `LevelScalingDeltaMin`;
+
+UPDATE `creature_template_scaling` SET `LevelScalingDeltaMax`=`LevelScalingDeltaMin`;