Merge pull request #136 from azerothcore/master

Minor/update
This commit is contained in:
bashermens
2026-01-06 16:25:13 +01:00
committed by GitHub
5 changed files with 30 additions and 3 deletions

View File

@@ -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;

View File

@@ -282,7 +282,6 @@ public:
summon->AI()->AttackStart(target);
summon->SetInCombatWithZone();
summon->SetReactState(REACT_AGGRESSIVE);
summon->CallForHelp(150.0f);
}
}
}
@@ -501,7 +500,7 @@ public:
events.Reset();
}
void JustEngagedWith(Unit* /*who*/) override
void JustEngagedWith(Unit* /*who*/) override
{
switch (me->GetEntry())
{