aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorNay <dnpd.dd@gmail.com>2012-08-08 03:11:10 +0100
committerNay <dnpd.dd@gmail.com>2012-08-08 03:11:10 +0100
commita781555f94623072bf61044ee444fbc7a464d12a (patch)
tree4177ef762a3cb6f4fd6520c8d041bb73db4b42b8 /sql
parentcb5b85d9e0cf483be814e03f02fe145fa32ff451 (diff)
Core&DB/NPCs: Add an extra field for mana_mod in creature_template (for proper mana calculations)
This field is usually 2 for a small group of creatures with double mana
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/2012_08_08_00_world_creature_template.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/updates/world/2012_08_08_00_world_creature_template.sql b/sql/updates/world/2012_08_08_00_world_creature_template.sql
new file mode 100644
index 00000000000..1e934b9f612
--- /dev/null
+++ b/sql/updates/world/2012_08_08_00_world_creature_template.sql
@@ -0,0 +1 @@
+ALTER TABLE `creature_template` ADD `Mana_mod_extra` float NOT NULL DEFAULT '1' AFTER `Mana_mod`;