From b84e27436c7773a898fed13087040ca0e1688b1a Mon Sep 17 00:00:00 2001 From: k0rd Date: Fri, 10 Feb 2012 01:40:05 -0500 Subject: [PATCH] fixes crash on saving world with /removespecial --- TShockAPI/Commands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index 918dc316..dc875445 100644 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -1562,7 +1562,7 @@ namespace TShockAPI break; case 112: case 116: - Main.tile[x, y].type = 169; + Main.tile[x, y].type = 53; break; case 113: Main.tile[x, y].type = 38;