mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
13 lines
272 B
C#
13 lines
272 B
C#
using Content.Server.NPC.HTN;
|
|
using Content.Shared.CombatMode;
|
|
|
|
namespace Content.Server.CombatMode;
|
|
|
|
public sealed class CombatModeSystem : SharedCombatModeSystem
|
|
{
|
|
protected override bool IsNpc(EntityUid uid)
|
|
{
|
|
return HasComp<HTNComponent>(uid);
|
|
}
|
|
}
|