diff --git a/TShockAPI/TShock.cs b/TShockAPI/TShock.cs index 327d1ce4..608000fc 100644 --- a/TShockAPI/TShock.cs +++ b/TShockAPI/TShock.cs @@ -62,6 +62,12 @@ namespace TShockAPI GameHooks.OnLoadContent += new Action(OnLoadContent); ServerHooks.OnChat += new Action(OnChat); ServerHooks.OnJoin += new Action(OnJoin); + NetHooks.OnPreGetData += new NetHooks.GetDataD(OnPreGetData); + } + + void OnPreGetData(byte id, messageBuffer msg, int idx, int length, HandledEventArgs e) + { + throw new NotImplementedException(); } diff --git a/TShockAPI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/TShockAPI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 303b254c..2a9ad2b0 100644 Binary files a/TShockAPI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/TShockAPI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ