This commit is contained in:
SoulliesOfficial
2026-05-27 15:15:28 -04:00
parent 76f498ae2b
commit 72756712f7
669 changed files with 5361 additions and 12268 deletions

View File

@@ -15,7 +15,7 @@ namespace Cielonos.MainGame.Characters.AI
public override TaskStatus OnUpdate()
{
CooldownTimer cooldownTimer = self.selfTimeSm.coolDownTimers[timerName.Value];
bool conditionMet = checkIfCompleted ? cooldownTimer.IsCompleted : !cooldownTimer.IsCompleted;
bool conditionMet = checkIfCompleted ? cooldownTimer.isCompleted : !cooldownTimer.isCompleted;
return conditionMet ? TaskStatus.Success : TaskStatus.Failure;
}
}