From 55262e6108e465aec592bb95918583e29c2a8ae5 Mon Sep 17 00:00:00 2001 From: Zack Piispanen Date: Fri, 4 Oct 2013 23:07:44 -0400 Subject: [PATCH] Send packet too --- TShockAPI/Commands.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index 799e3277..aff53576 100755 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -3651,6 +3651,7 @@ namespace TShockAPI if (p != null && p.active) { p.Kill(); + TSPlayer.All.SendData(PacketTypes.ProjectileDestroy, "", p.whoAmI); } } } @@ -3664,6 +3665,7 @@ namespace TShockAPI if (p != null && p.active && p.type == id) { p.Kill(); + TSPlayer.All.SendData(PacketTypes.ProjectileDestroy, "", p.whoAmI); } } }