feat: clear all attackers when hero died

This commit is contained in:
Иванов Иван
2024-08-12 18:29:25 +02:00
parent c61019961b
commit 75a5b842f7
2 changed files with 5 additions and 0 deletions

View File

@@ -89,6 +89,10 @@ namespace L2Bot::Domain::Entities
{
return m_AttackerIds;
}
void ClearAttackers()
{
m_AttackerIds.clear();
}
const std::vector<Serializers::Node> BuildSerializationNodes() const override
{