Fix tileCut bypass

This commit is contained in:
Zidonuke 2011-12-29 20:08:54 -05:00
parent a227369cdc
commit d44920023b

View file

@ -634,7 +634,7 @@ namespace TShockAPI
return true; 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; return false;
} }