Skip to content

Commit 57133d5

Browse files
committed
Fix build.
1 parent 2cb54cf commit 57133d5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/server/game/Spells/SpellMgr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4938,7 +4938,7 @@ void SpellMgr::LoadSpellInfoCorrections()
49384938
}, [](SpellInfo* spellInfo)
49394939
{
49404940
spellInfo->Attributes &= ~SPELL_ATTR0_HEARTBEAT_RESIST_CHECK;
4941-
};
4941+
});
49424942

49434943
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
49444944
{

src/server/scripts/Spells/spell_generic.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4662,7 +4662,7 @@ class spell_gen_food_or_drink : public AuraScript
46624662

46634663
void HandleTargetHeartbeat()
46644664
{
4665-
GetTarget()->SendPlaySpellVisual(_isFood ? SPELL_VISUAL_KIT_FOOD : SPELL_VISUAL_KIT_DRINK);
4665+
GetTarget()->SendPlaySpellVisualKit(_isFood ? SPELL_VISUAL_KIT_FOOD : SPELL_VISUAL_KIT_DRINK, 0);
46664666
}
46674667

46684668
void Register() override

0 commit comments

Comments
 (0)