fix(Core/ObjectMgr): Remove deprecated stat types warnings from items 13113 and 34967 (#24331)
This commit is contained in:
parent
5feb14218e
commit
e3e42fe58c
1 changed files with 4 additions and 1 deletions
|
|
@ -3172,7 +3172,10 @@ void ObjectMgr::LoadItemTemplates()
|
|||
{
|
||||
case ITEM_MOD_SPELL_HEALING_DONE:
|
||||
case ITEM_MOD_SPELL_DAMAGE_DONE:
|
||||
LOG_WARN("sql.sql", "Item (Entry: {}) has deprecated stat_type{} ({})", entry, j + 1, itemTemplate.ItemStat[j].ItemStatType);
|
||||
// Skip warning for specific items: 13113 (Feathermoon Headdress - Blizzard oversight), 34967 (test item)
|
||||
if (entry != 13113 && entry != 34967)
|
||||
LOG_WARN("sql.sql", "Item (Entry: {}) has deprecated stat_type{} ({})", entry, j + 1, itemTemplate.ItemStat[j].ItemStatType);
|
||||
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue