fix wrong import; note we don't need to consider legacy import inside the packets module since this packet just got added before the structure changed

This commit is contained in:
TheSnoozer 2017-08-08 20:27:40 +02:00 committed by joo
parent ab71aeeb7d
commit 0c64623696
1 changed files with 4 additions and 3 deletions

View File

@ -8,8 +8,9 @@ from minecraft import authentication
from minecraft.exceptions import YggdrasilError
from minecraft.networking.connection import Connection
from minecraft.networking.packets import (
ChatMessagePacket, ChatPacket, ServerClientStatus
ChatMessagePacket, ChatPacket
)
from minecraft.networking.packets.serverbound.play import ClientStatusPacket
from minecraft.compat import input
@ -81,8 +82,8 @@ def main():
text = input()
if text == "/respawn":
print("respawning...")
packet = ServerClientStatus()
packet.action_id = ServerClientStatus.RESPAWN
packet = ClientStatusPacket()
packet.action_id = ClientStatusPacket.RESPAWN
connection.write_packet(packet)
else:
packet = ChatPacket()