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); } } }