From fd43a5370b6ed149e69afa15969f49a0228daa39 Mon Sep 17 00:00:00 2001 From: VegaZ Date: Sun, 23 Dec 2018 22:18:14 +0100 Subject: [PATCH] Fix DroppableItem --- Server/Inventory/Interfaces/IUsableItem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/Inventory/Interfaces/IUsableItem.cs b/Server/Inventory/Interfaces/IUsableItem.cs index 161701ff..2a5adc5c 100644 --- a/Server/Inventory/Interfaces/IUsableItem.cs +++ b/Server/Inventory/Interfaces/IUsableItem.cs @@ -12,7 +12,7 @@ using System.Text; namespace reallife_gamemode.Server.Inventory.Interfaces { - public interface IUsableItem : IItem + public interface IUsableItem : IItem, IDroppableItem { void Use(UserItem uItem); }