* Fix namespaces and optimize imports * Cleanup fixes * Merge conflict fixes * Merge conflict fixes * Merge conflict fixes
19 lines
506 B
C#
19 lines
506 B
C#
using Content.Server.AI.Utility.Actions;
|
|
using Content.Server.AI.Utility.ExpandableActions.Nutrition;
|
|
using Robust.Shared.Interfaces.GameObjects;
|
|
|
|
namespace Content.Server.AI.Utility.BehaviorSets
|
|
{
|
|
public sealed class HungerBehaviorSet : BehaviorSet
|
|
{
|
|
public HungerBehaviorSet(IEntity owner) : base(owner)
|
|
{
|
|
Actions = new IAiUtility[]
|
|
{
|
|
new PickUpNearbyFoodExp(),
|
|
new UseFoodInInventoryExp(),
|
|
};
|
|
}
|
|
}
|
|
}
|