diff --git a/EXILED/Exiled.API/Extensions/DamageTypeExtensions.cs b/EXILED/Exiled.API/Extensions/DamageTypeExtensions.cs
index 6abeea8a2f..eaba7fe2bd 100644
--- a/EXILED/Exiled.API/Extensions/DamageTypeExtensions.cs
+++ b/EXILED/Exiled.API/Extensions/DamageTypeExtensions.cs
@@ -124,12 +124,12 @@ public static class DamageTypeExtensions
/// Check if a damage type is caused by a weapon.
///
/// The damage type to be checked.
- /// Indicates whether the MicroHid damage type should be taken into account.
+ /// Indicates whether the MicroHid and Jailbird damage type should be taken into account.
/// Returns whether the is caused by weapon.
- public static bool IsWeapon(this DamageType type, bool checkMicro = true) => type switch
+ public static bool IsWeapon(this DamageType type, bool checkNonFirearm = true) => type switch
{
DamageType.Crossvec or DamageType.Logicer or DamageType.Revolver or DamageType.Shotgun or DamageType.AK or DamageType.Com15 or DamageType.Com18 or DamageType.E11Sr or DamageType.Fsp9 or DamageType.ParticleDisruptor or DamageType.Com45 or DamageType.Frmg0 or DamageType.A7 => true,
- DamageType.MicroHid when checkMicro => true,
+ DamageType.MicroHid or DamageType.Jailbird when checkNonFirearm => true,
_ => false,
};
diff --git a/EXILED/Exiled.API/Extensions/ItemExtensions.cs b/EXILED/Exiled.API/Extensions/ItemExtensions.cs
index 458fd10bc4..1c03c97d9c 100644
--- a/EXILED/Exiled.API/Extensions/ItemExtensions.cs
+++ b/EXILED/Exiled.API/Extensions/ItemExtensions.cs
@@ -38,9 +38,9 @@ public static class ItemExtensions
/// Check if an item is a weapon.
///
/// The item to be checked.
- /// Indicates whether the MicroHID item should be taken into account.
+ /// Indicates whether the MicroHID and Jailbird item should be taken into account.
/// Returns whether the is a weapon.
- public static bool IsWeapon(this ItemType type, bool checkMicro = true) => type.GetFirearmType() is not FirearmType.None || (checkMicro && type is ItemType.MicroHID);
+ public static bool IsWeapon(this ItemType type, bool checkNonFirearm = true) => type.GetFirearmType() is not FirearmType.None || (checkNonFirearm && type is ItemType.MicroHID or ItemType.Jailbird);
///
/// Check if an item is an SCP.