mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 05:50:54 +01: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);
|
|
}
|
|
}
|