Send packet too

This commit is contained in:
Zack Piispanen 2013-10-04 23:07:44 -04:00
parent 60d3252a2e
commit 55262e6108

View file

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