mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 21:47:24 +00:00
Aggro radius (#665)
This commit is contained in:
parent
91f2cebcc7
commit
40a9aefb5b
@ -65,9 +65,9 @@ BaseCombatAIComponent::BaseCombatAIComponent(Entity* parent, const uint32_t id)
|
|||||||
// radii if it is greater than the one in the database.
|
// radii if it is greater than the one in the database.
|
||||||
if (m_Parent) {
|
if (m_Parent) {
|
||||||
auto aggroRadius = m_Parent->GetVar<float>(u"aggroRadius");
|
auto aggroRadius = m_Parent->GetVar<float>(u"aggroRadius");
|
||||||
m_AggroRadius = std::max(aggroRadius, m_AggroRadius);
|
m_AggroRadius = aggroRadius != 0 ? aggroRadius : m_AggroRadius;
|
||||||
auto tetherRadius = m_Parent->GetVar<float>(u"tetherRadius");
|
auto tetherRadius = m_Parent->GetVar<float>(u"tetherRadius");
|
||||||
m_HardTetherRadius = std::max(tetherRadius, m_HardTetherRadius);
|
m_HardTetherRadius = tetherRadius != 0 ? tetherRadius : m_HardTetherRadius;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user