diff --git a/EXILED/Exiled.API/Features/Items/Usable.cs b/EXILED/Exiled.API/Features/Items/Usable.cs index b58f6b8dd..efdff0c2f 100644 --- a/EXILED/Exiled.API/Features/Items/Usable.cs +++ b/EXILED/Exiled.API/Features/Items/Usable.cs @@ -67,9 +67,13 @@ internal Usable(ItemType type) } /// - /// Gets a value indicating whether the item is currently being used. + /// Gets or sets a value indicating whether the item is currently being used. /// - public bool IsUsing => Base.IsUsing; + public bool IsUsing + { + get => Base.IsUsing; + set => UsableItemsController.ServerEmulateMessage(Serial, value ? StatusMessage.StatusType.Start : StatusMessage.StatusType.Cancel); + } /// /// Gets or sets how long it takes to use the item.