Creatures/Rank

* set unused ranks to 0 during setup to fix display issues
This commit is contained in:
Sarjuuk
2018-12-14 23:28:48 +01:00
parent 392610b899
commit 34fe4c2654
2 changed files with 2 additions and 1 deletions

View File

@@ -38,7 +38,7 @@ function creature(array $ids = [])
exp,
faction,
npcflag,
rank,
IF(rank > 4, 0, rank),
dmgSchool,
DamageModifier,
BaseAttackTime,

View File

@@ -0,0 +1 @@
UPDATE aowow_dbversion SET `sql` = CONCAT(IFNULL(`sql`, ''), ' creature');