fish-station/Content.Shared/CCVar/CCVars.NPC.cs
2024-11-14 03:38:28 +03:00

16 lines
528 B
C#

using Robust.Shared.Configuration;
namespace Content.Shared.CCVar;
public sealed partial class CCVars
{
public static readonly CVarDef<int> NPCMaxUpdates =
CVarDef.Create("npc.max_updates", 512); // Sunrise-Edit
public static readonly CVarDef<bool> NPCEnabled = CVarDef.Create("npc.enabled", true);
/// <summary>
/// Should NPCs pathfind when steering. For debug purposes.
/// </summary>
public static readonly CVarDef<bool> NPCPathfinding = CVarDef.Create("npc.pathfinding", true);
}