mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 09:17:18 +00:00
fix(DB/Item): Feathermoon Headdress has the wrong stats (#19814)
* fix(DB/Item): Feathermoon Headdress has the wrong stats * ITEM_MOD_SPELL_DAMAGE_DONE deprecated check removed
This commit is contained in:
9
data/sql/updates/pending_db_world/2024_08_31_02.sql
Normal file
9
data/sql/updates/pending_db_world/2024_08_31_02.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
UPDATE `item_template`
|
||||
SET `stat_type1` = 5,
|
||||
`stat_value1` = 20,
|
||||
`stat_type2` = 7,
|
||||
`stat_value2` = 13,
|
||||
`stat_type3` = 42,
|
||||
`stat_value3` = 25,
|
||||
`StatsCount` = 3
|
||||
WHERE (`entry` = 13113);
|
||||
@@ -2989,7 +2989,6 @@ void ObjectMgr::LoadItemTemplates()
|
||||
switch (itemTemplate.ItemStat[j].ItemStatType)
|
||||
{
|
||||
case ITEM_MOD_SPELL_HEALING_DONE:
|
||||
case ITEM_MOD_SPELL_DAMAGE_DONE:
|
||||
LOG_ERROR("sql.sql", "Item (Entry: {}) has deprecated stat_type{} ({})", entry, j + 1, itemTemplate.ItemStat[j].ItemStatType);
|
||||
break;
|
||||
default:
|
||||
|
||||
Reference in New Issue
Block a user