Core/Auras: Defined and implemented new aura interrupt flags

This commit is contained in:
Shauren
2023-09-03 16:06:43 +02:00
parent aa32feddb7
commit ba224f70ad
6 changed files with 42 additions and 10 deletions

View File

@@ -409,7 +409,7 @@ bool InstanceScript::SetBossState(uint32 id, EncounterState state)
instance->DoOnPlayers([](Player* player)
{
player->AtStartOfEncounter();
player->AtStartOfEncounter(EncounterType::DungeonEncounter);
});
break;
}
@@ -420,7 +420,7 @@ bool InstanceScript::SetBossState(uint32 id, EncounterState state)
instance->DoOnPlayers([](Player* player)
{
player->AtEndOfEncounter();
player->AtEndOfEncounter(EncounterType::DungeonEncounter);
});
break;
}
@@ -437,7 +437,7 @@ bool InstanceScript::SetBossState(uint32 id, EncounterState state)
instance->DoOnPlayers([](Player* player)
{
player->AtEndOfEncounter();
player->AtEndOfEncounter(EncounterType::DungeonEncounter);
});
break;
}