From da87682719e8e97aac73d62df676c1df22753ccf Mon Sep 17 00:00:00 2001 From: Darkvengance aka Sildaekar Date: Wed, 1 Feb 2012 14:59:25 -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..0667a7d6 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 118: + Main.tile[x, y].type = 38; + break; default: continue; }