diff --git a/changelogs/4.2.md b/changelogs/4.2.md index 337a17943..ac1124dda 100644 --- a/changelogs/4.2.md +++ b/changelogs/4.2.md @@ -19,3 +19,12 @@ Released 19th February 2022. ## Fixes - Fixed multiple players being able to sleep in the same bed. - Fixed hitbox not resetting properly after swimming or gliding. + +# 4.2.2 +Released 2nd March 2022. + +## Fixes +- Fixed crash in `/dumpmemory` due to usage of non-printable string keys in `CraftingManager`. Array contents in memory dumps are now rendered as prettified key-value pairs. +- Fixed output directory for `/dumpmemory`. +- `PlayerInventory->isHotbarSlot()` now correctly returns `false` when given `9`. +- Fixed ghost items left in the inventory when dropping tools while mining. diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 0e9e44e06..a77e52256 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.2.2"; - public const IS_DEVELOPMENT_BUILD = true; + public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable"; private function __construct(){