diff --git a/TShockAPI/NetItem.cs b/TShockAPI/NetItem.cs
index 095d3f1c..86fe82a7 100644
--- a/TShockAPI/NetItem.cs
+++ b/TShockAPI/NetItem.cs
@@ -162,6 +162,17 @@ namespace TShockAPI
_prefixId = prefixId;
}
+ ///
+ /// Creates a new .
+ ///
+ /// Item in the game.
+ public NetItem(Item item)
+ {
+ _netId = item.netID;
+ _stack = item.stack;
+ _prefixId = item.prefix;
+ }
+
///
/// Creates based on data from this structure.
///