mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 01:08:35 +00:00
fix(Core/ObjectMgr): Remove deprecated stat types warnings from items 13113 and 34967 (#24331)
This commit is contained in:
@@ -3172,7 +3172,10 @@ void ObjectMgr::LoadItemTemplates()
|
|||||||
{
|
{
|
||||||
case ITEM_MOD_SPELL_HEALING_DONE:
|
case ITEM_MOD_SPELL_HEALING_DONE:
|
||||||
case ITEM_MOD_SPELL_DAMAGE_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;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user