mirror of
https://github.com/ammaraskar/pyCraft.git
synced 2024-11-16 07:15:24 +01:00
Merge pull request #76 from TheSnoozer/packet-name-issue
fix AttributeError: 'Packet' object has no attribute 'name'
This commit is contained in:
commit
ae0a3b3989
@ -433,7 +433,7 @@ class NetworkingThread(threading.Thread):
|
||||
# Ignore the earlier exception if a disconnect packet is
|
||||
# received, as it may have been caused by trying to write to
|
||||
# thw closed socket, which does not represent a program error.
|
||||
if exc_info is not None and packet.name == 'disconnect':
|
||||
if exc_info is not None and packet.packet_name == "disconnect":
|
||||
exc_info = None
|
||||
|
||||
if exc_info is not None:
|
||||
|
Loading…
Reference in New Issue
Block a user