Co-authored-by: Pieter-Jan Briers <pieterjan.briers@gmail.com> Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
19 lines
483 B
C#
19 lines
483 B
C#
using Content.Server.AI.Utility.BehaviorSets;
|
|
using JetBrains.Annotations;
|
|
using Robust.Server.AI;
|
|
|
|
namespace Content.Server.AI.Utility.AiLogic
|
|
{
|
|
[AiLogicProcessor("PathingDummy")]
|
|
[UsedImplicitly]
|
|
public sealed class PathingDummy : UtilityAi
|
|
{
|
|
public override void Setup()
|
|
{
|
|
base.Setup();
|
|
BehaviorSets.Add(typeof(PathingDummyBehaviorSet), new PathingDummyBehaviorSet(SelfEntity));
|
|
SortActions();
|
|
}
|
|
}
|
|
}
|