Merge branch 'main' into main

This commit is contained in:
Aaron Kimbrell
2022-05-24 19:00:52 -05:00
committed by GitHub
169 changed files with 3164 additions and 1954 deletions

View File

@@ -191,7 +191,7 @@ void BaseCombatAIComponent::Update(const float deltaTime) {
return;
}
if (m_Stunned || m_SkillTime > 0) {
if (m_Stunned) {
m_MovementAI->Stop();
return;
@@ -357,7 +357,7 @@ void BaseCombatAIComponent::CalculateCombat(const float deltaTime) {
return;
}
m_Downtime = 0.5f; // TODO: find out if this is necessary
m_Downtime = 0.5f;
auto* target = GetTargetEntity();