From d966e1dd25b1ab6eb4a196ee38613a78df5e5c99 Mon Sep 17 00:00:00 2001 From: Enerdy Date: Mon, 6 Jul 2015 00:05:13 +0100 Subject: [PATCH] DisableTombstones now also prevents the new Golden Tombstones from dropping (sorry rich dudes) --- TShockAPI/TShock.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/TShock.cs b/TShockAPI/TShock.cs index 987d1ad3..96bc0030 100755 --- a/TShockAPI/TShock.cs +++ b/TShockAPI/TShock.cs @@ -1362,7 +1362,7 @@ namespace TShockAPI private void OnProjectileSetDefaults(SetDefaultsEventArgs e) { //tombstone fix. - if (e.Info == 43 || (e.Info >= 201 && e.Info <= 205)) + if (e.Info == 43 || (e.Info >= 201 && e.Info <= 205) || (e.Info >= 527 && e.Info <= 531)) if (Config.DisableTombstones) e.Object.SetDefaults(0); if (e.Info == 75)