From b20e04539d6f499c638750055d30f47941fc6b8a Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Fri, 22 Jul 2022 19:34:57 +0100 Subject: [PATCH] Release 4.6.1 --- changelogs/4.6.md | 17 +++++++++++++++++ src/VersionInfo.php | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/changelogs/4.6.md b/changelogs/4.6.md index 473edca1f..e32098da6 100644 --- a/changelogs/4.6.md +++ b/changelogs/4.6.md @@ -12,3 +12,20 @@ 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. diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 665a2c21d..cec39b47e 100644 --- a/src/VersionInfo.php +++ b/src/VersionInfo.php @@ -32,7 +32,7 @@ use function str_repeat; final class VersionInfo{ public const NAME = "PocketMine-MP"; public const BASE_VERSION = "4.6.1"; - public const IS_DEVELOPMENT_BUILD = true; + public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable"; private function __construct(){