fix(core): Fixes buy packet (#453)

- [X] Fixes buy packet
- [X] Changes from null to empty string in gump initial text
This commit is contained in:
Kamron Batman 2021-02-04 10:40:41 -08:00 committed by GitHub
parent 995149ad01
commit 50e9b367fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 12 additions and 12 deletions

View file

@ -606,7 +606,7 @@ namespace Server.Network
public bool HandleReceive()
{
if (Connection == null)
if (Connection == null || !_running)
{
return false;
}