From 40dbe8481744217ce726b51b84cde06abb08f8d9 Mon Sep 17 00:00:00 2001 From: Zack Piispanen Date: Tue, 1 Oct 2013 17:16:25 -0400 Subject: [PATCH] Fix tombstones. --- TShockAPI/TShock.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TShockAPI/TShock.cs b/TShockAPI/TShock.cs index b07d8960..9792b97e 100755 --- a/TShockAPI/TShock.cs +++ b/TShockAPI/TShock.cs @@ -1116,7 +1116,8 @@ namespace TShockAPI private void OnProjectileSetDefaults(SetDefaultsEventArgs e) { - if (e.Info == 43) + //tombstone fix. + if (e.Info == 43 || (e.Info >= 201 && e.Info <= 205)) if (Config.DisableTombstones) e.Object.SetDefaults(0); if (e.Info == 75)