From a7fc245291388551fe7eb1e82ac9de25641a4362 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Tue, 11 Aug 2020 21:06:38 +0100 Subject: [PATCH] Release 3.14.3 --- changelogs/3.14.md | 8 ++++++++ src/pocketmine/VersionInfo.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/changelogs/3.14.md b/changelogs/3.14.md index b173ed049..d6a00b8da 100644 --- a/changelogs/3.14.md +++ b/changelogs/3.14.md @@ -30,3 +30,11 @@ Plugin developers should **only** update their required API to this version if y - Players will now correctly receive the needed number of spawn chunks if they are teleported between `PlayerLoginEvent` and `PlayerJoinEvent`. This fixes a bug that could occur when teleporting players in delayed tasks between login and join. - `PlayerRespawnEvent->setRespawnPosition()` now throws an exception if the provided `Position` has an invalid world associated with it (null or unloaded). - Fixed a crash that occurred when stats reporting was enabled. + +# 3.14.3 +- Fixed deprecation error when running `/whitelist list` on PHP 7.4. +- Fixed podzol breaking animation being incorrect (incorrect hardness). +- `Entity::getSaveId()` now reports the class name in the message thrown for unregistered entities. +- Fixed `CraftingManager->validate()` producing different results when called multiple times for the same transaction. +- Fixed various issues with batch-crafting items using the recipe book and shift-clicking. +- `tests/plugins/PocketMine-DevTools` submodule has been renamed to `tests/plugins/DevTools`. diff --git a/src/pocketmine/VersionInfo.php b/src/pocketmine/VersionInfo.php index 2c09c9408..14bc93de8 100644 --- a/src/pocketmine/VersionInfo.php +++ b/src/pocketmine/VersionInfo.php @@ -34,5 +34,5 @@ const _VERSION_INFO_INCLUDED = true; const NAME = "PocketMine-MP"; const BASE_VERSION = "3.14.3"; -const IS_DEVELOPMENT_BUILD = true; +const IS_DEVELOPMENT_BUILD = false; const BUILD_NUMBER = 0;