From 99fb24c82accb291bf733b4ec21b40a6f99fd351 Mon Sep 17 00:00:00 2001 From: Darkvengance aka Sildaekar Date: Wed, 1 Feb 2012 14:55:41 -0600 Subject: [PATCH] removespecial now removes pearlstone bricks --- TShockAPI/Commands.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index 3b1dfb1b..9f28db34 100644 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -1516,6 +1516,9 @@ namespace TShockAPI case 116: Main.tile[x, y].type = 169; break; + case 113: + Main.tile[x, y].type = 38; + break; default: continue; }