Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion EXILED/Exiled.API/Features/Items/Item.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,12 @@ public ushort Serial
/// <summary>
/// Gets a value indicating whether this item is a weapon.
/// </summary>
public bool IsWeapon => this is Firearm;
public bool IsWeapon => this is Firearm || Type is ItemType.Jailbird or ItemType.MicroHID;

/// <summary>
/// Gets a value indicating whether or not this item is a firearm.
/// </summary>
public bool IsFirearm => this is Firearm;

/// <summary>
/// Gets a value indicating whether this item emits light.
Expand Down