fix AttributeError: 'Packet' object has no attribute 'name' (should be 'packet_name' - see https://github.com/ammaraskar/pyCraft/blob/master/minecraft/networking/packets/packet.py#L9)

This commit is contained in:
TheSnoozer 2018-01-20 19:45:41 -05:00
parent ece90fcd9d
commit 5c0c95068f

View File

@ -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: