diff --git a/EXILED/Exiled.API/Extensions/RoleExtensions.cs b/EXILED/Exiled.API/Extensions/RoleExtensions.cs index f9e86fa1a..153d09d2f 100644 --- a/EXILED/Exiled.API/Extensions/RoleExtensions.cs +++ b/EXILED/Exiled.API/Extensions/RoleExtensions.cs @@ -156,7 +156,7 @@ public static bool TryGetRoleBase(this RoleTypeId roleType, out T roleBase) /// /// The . /// A boolean which is true when the role is a military role. Does not include Facility Guards. - public static bool IsMilitary(this RoleTypeId roleType) => roleType.IsNtf() || roleType.IsChaos(); + public static bool IsMilitary(this RoleTypeId roleType) => roleType.IsNtf() || roleType.IsChaos() || roleType == RoleTypeId.FacilityGuard; /// /// Checks if the role is a civilian role (Scientists and Class-D).