Files
wwdpublic/Content.Server/NPC/HTN/HTNTask.cs
osjarw 31dda9713f Allow the creation of recursive HTNs (#30138)
Allow recursive HTNs

(cherry picked from commit 669cc55ba477c19fd17ebaf22534ad127d4305b7)
2025-09-27 12:41:47 +03:00

13 lines
404 B
C#

namespace Content.Server.NPC.HTN;
[ImplicitDataDefinitionForInheritors]
public abstract partial class HTNTask
{
/// <summary>
/// Limit the amount of tasks the planner considers. Exceeding this value sleeps the NPC and throws an exception.
/// The expected way to hit this limit is with badly written recursive tasks.
/// </summary>
[DataField]
public int MaximumTasks = 1000;
}