* Initial commit * Removed mention of StationAiTurretComponent (for now) * Prep for moving out of draft * Fixing merge conflict * Re-added new net frequencies to AI turrets * Removed turret control content * Removed unintended change * Final tweaks * Fixed incorrect file name * Improvement to fire mode handling * Addressed review comments * Updated how turret wire panel auto-closing is handled * Ranged NPCs no longer waste shots on stunned targets * Fixed bug in tracking broken state * Addressed review comments * Bug fix * Removed unnecessary event call
11 lines
227 B
C#
11 lines
227 B
C#
namespace Content.Server.NPC.Queries.Considerations;
|
|
|
|
/// <summary>
|
|
/// Returns 1f if the target has the <see cref="StunnedComponent"/>
|
|
/// </summary>
|
|
public sealed partial class TargetIsStunnedCon : UtilityConsideration
|
|
{
|
|
|
|
}
|
|
|