From d44920023b35d2e34b8a415e89c6cd8d2e63fd90 Mon Sep 17 00:00:00 2001 From: Zidonuke Date: Thu, 29 Dec 2011 20:08:54 -0500 Subject: [PATCH] Fix tileCut bypass --- TShockAPI/GetDataHandlers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/GetDataHandlers.cs b/TShockAPI/GetDataHandlers.cs index b07daf3c..0516953c 100644 --- a/TShockAPI/GetDataHandlers.cs +++ b/TShockAPI/GetDataHandlers.cs @@ -634,7 +634,7 @@ namespace TShockAPI return true; } - if ((tiletype == 127 || Main.tileCut[tiletype]) && type == 0) //Ice Block Kill, Bypass range checks and such + if ((tiletype == 127 || Main.tileCut[tiletype]) && (type == 0 || type == 4)) { return false; }