pyCraft/minecraft
joodicator 612fa8e324 Add support for Minecraft 18w43a to 1.14 (protocols 441 to 477)
This commit introduces two backward-incompatible changes which may break
existing code:

(1) `networking.packets.clientbound.play.SpawnObjectPacket.EntityType'
is no longer accessible as an attribute of the the `SpawnObjectPacket'
class: the values now depend on a `ConnectionContext`, and must be
accessed through an instance, or using `SpawnObjectPacket.field_enum'.
See the text of the `AttributeError` raised from the descriptor for
`SpawnObjectPacket.EntityType` for the full details.

(2) For some subclasses of `networking.types.Type', it is necessary to
call the methods `read_with_context' and `send_with_context' instead of
`read' and `send', supplying a `ConnectionContext' for those data types
- currently only `Position` - whose layout depends on it.
2019-05-11 08:43:51 +02:00
..
networking Add support for Minecraft 18w43a to 1.14 (protocols 441 to 477) 2019-05-11 08:43:51 +02:00
__init__.py Add support for Minecraft 18w43a to 1.14 (protocols 441 to 477) 2019-05-11 08:43:51 +02:00
authentication.py Fix hanging indefinitely while making auth-related requests (#117) 2019-01-04 20:22:42 -05:00
compat.py Add automatic protocol version negotiation. 2016-03-07 02:40:25 +00:00
exceptions.py Fix: reconnecting from an exception handler does not work. 2018-05-29 01:14:23 +01:00