From 7aa501c5e14f6973ca597bc2e11098158160062a Mon Sep 17 00:00:00 2001 From: high Date: Mon, 27 Jun 2011 05:25:20 -0400 Subject: [PATCH] Forgot this() in constructor --- TShockAPI/Net/NetTile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/Net/NetTile.cs b/TShockAPI/Net/NetTile.cs index e52e96fc..2395b3fc 100644 --- a/TShockAPI/Net/NetTile.cs +++ b/TShockAPI/Net/NetTile.cs @@ -52,7 +52,7 @@ namespace TShockAPI.Net } public NetTile(Stream stream) - : base() + : this() { Unpack(stream); }