Merge pull request #1 from jyooru/pull230

fix linting issues
This commit is contained in:
Andrew So 2021-07-07 20:52:34 -07:00 committed by GitHub
commit 99a97df753
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View File

@ -150,7 +150,7 @@ class SetCompressionPacket(Packet):
def get_id(context):
return 0x03 if context.protocol_later_eq(755) else \
0x46
packet_name = "set compression"
definition = [
{'threshold': VarInt}]
@ -374,6 +374,7 @@ class EntityLookPacket(Packet):
{'on_ground': Boolean}
]
class ResourcePackSendPacket(Packet):
@staticmethod
def get_id(context):
@ -384,4 +385,4 @@ class ResourcePackSendPacket(Packet):
definition = [
{"url": String},
{"hash": String}
]
]

View File

@ -34,7 +34,7 @@ class PlayerPositionAndLookPacket(Packet, BitFieldEnum):
{'pitch': Float},
{'flags': Byte},
{'teleport_id': VarInt} if context.protocol_later_eq(107) else {},
{'dismount_vehicle':Boolean} if context.protocol_later_eq(755) else {},
{'dismount_vehicle': Boolean} if context.protocol_later_eq(755) else {},
])
# Access the 'x', 'y', 'z' fields as a Vector tuple.

View File

@ -268,6 +268,7 @@ class UseItemPacket(Packet):
Hand = RelativeHand
class ResourcePackStatusPacket(Packet):
@staticmethod
def get_id(context):
@ -275,4 +276,4 @@ class ResourcePackStatusPacket(Packet):
packet_name = "resource pask status"
definition = [
{"result": VarInt}
]
]