Core/DataStores: Fixed SpellPowerEntry structure

* ManaCosts are signed
This commit is contained in:
joschiwald
2017-07-27 22:46:13 +02:00
parent 7c39123432
commit 0c95c14938
3 changed files with 7 additions and 4 deletions

View File

@@ -0,0 +1,3 @@
ALTER TABLE `spell_power`
CHANGE `ManaCost` `ManaCost` INT(11) DEFAULT 0 NOT NULL,
CHANGE `ManaCostAdditional` `ManaCostAdditional` INT(11) DEFAULT 0 NOT NULL;