diff --git a/changelogs/4.23.md b/changelogs/4.23.md index 6cd261ba1..031eaa1cc 100644 --- a/changelogs/4.23.md +++ b/changelogs/4.23.md @@ -43,3 +43,9 @@ Released 24th July 2023. - Player emotes no longer broadcast messages to other players. This was unintended behaviour caused by a client-side behavioural change. - Shulker boxes no longer support the placement of torches or other similar blocks. - Fire can now be placed on upper slabs and the top of upside-down stairs. + +# 4.23.4 +Released 1st August 2023. + +## Fixes +- Fixed exponentially increasing lag when many hundreds of non-mergeable dropped items occupied the same space. This disproportionately affected SkyBlock servers due to large cactus farms using water to collect items together. diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 490300ff5..458707c83 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.23.4"; - public const IS_DEVELOPMENT_BUILD = true; + public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable"; private function __construct(){