fix(core): Converts the rest of the packets (#385)

- [X] Converts vendor buy packets
- [X] Converts vendor sell packets
- [X] Converts target packets
- [X] Converts secure trade packets
- [X] Converts some player packets that were missed
This commit is contained in:
Kamron Batman 2021-01-05 00:35:56 -08:00 • committed by GitHub
parent ffc26459ff
commit 3dd0d8f42b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 73 additions and 80 deletions

View file

@ -160,7 +160,7 @@ namespace Server.Network
public static void SendContainerContent(this NetState ns, Mobile beholder, Item beheld)
{
if (ns == null || !ns.GetSendBuffer(out var buffer))
if (ns == null)
{
return;
}