0
0
mirror of https://github.com/pmmp/PocketMine-MP.git synced 2024-11-21 16:35:25 +00:00
PocketMine-MP/changelogs/4.6.md
Dylan K. Taylor 9abbb85a93
Release 4.6.2
2022-08-06 15:35:47 +01:00

1.9 KiB

For Minecraft: Bedrock Edition 1.19.10

Note about API versions

Plugins which don't touch the protocol and compatible with any previous 4.x.y version will also run on these releases and do not need API bumps. Plugin developers should only update their required API to this version if you need the changes in this build.

WARNING: If your plugin uses the protocol, you're not shielded by API change constraints. You should consider using the mcpe-protocol directive in plugin.yml as a constraint if you do.

4.6.0

Released 13th July 2022.

General

  • Added support for Minecraft: Bedrock Edition 1.19.10.
  • Removed support for older versions.

4.6.1

Released 22nd July 2022.

Tools

  • build/generate-registry-annotations.php now supports processing single files (useful for PhpStorm file watchers).

API

  • Updated documentation for AsyncTask.

Fixes

  • Fixed incorrect items being displayed in item frames.
  • Fixed books not showing in lecterns.
  • Fixed incorrect damage interval of Wither status effect.
  • Fixed incorrect fire ticks when being set on fire by lava (8 seconds in Bedrock instead of 15).
  • Entity->attack() now cancels damage from FIRE and FIRE_TICK damage causes if the entity is fireproof.
  • Fixed inventory windows getting force-closed when the client attempts to use an enchanting table or anvil.

4.6.2

Released 6th August 2022.

Core

  • Improved server-side performance of PlayerAuthInputPacket handler.
  • Improved client-side performance of FloatingTextParticle by using an invisible falling block entity. This offered a roughly 5x performance improvement over using tiny invisible players in local testing.

Fixes

  • Fixed assert failures and debug spam on debug Minecraft clients related to abilities in AddPlayerPacket.
  • Fixed crash in ReversePriorityQueue on PHP 8.1 by adding #[ReturnTypeWillChange] attribute.