barneygale / quarry

Python library that implements the Minecraft network protocol and data types
Other
534 stars 74 forks source link

Support for 1.18.2 #138

Closed A-Waters closed 2 years ago

A-Waters commented 2 years ago

As you may have noticed Minecraft is now on 1.18.2 and something that has been changed is the protocol version. This went from 757 -> 758. I have already fixed this issue simply by added the next csv in "quarry\data\packets\"

before it would give an error of

No name known for packet: (758, 'status', 'upstream', 0)
Traceback (most recent call last):
  File "{PATH}\quarry\net\protocol.py", line 205, in get_packet_name
    return packets.packet_names[key]
KeyError: (758, 'status', 'upstream', 0)

This can be found in the pull request #137

A-Waters commented 2 years ago

duplicate issue #134