From c3ceeeace712f4eac380b78d1851e7dfb89f557c Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sat, 6 May 2023 18:20:18 +0100 Subject: [PATCH] Release 4.20.4 --- changelogs/4.20.md | 7 +++++++ src/VersionInfo.php | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/changelogs/4.20.md b/changelogs/4.20.md index bc8c931b2..37a0ef37b 100644 --- a/changelogs/4.20.md +++ b/changelogs/4.20.md @@ -64,3 +64,10 @@ Released 6th May 2023. - This was caused by creating a new timings handler for each call, regardless of whether a timer already existed for the given event and callback. - Fixed `Full Server Tick` and other records being missing from timings reports. - This was caused by timings handler depth not getting reset when timings was disabled and later re-enabled. + +# 4.20.4 +Released 6th May 2023. + +## Fixes +- Fixed players being forced into flight mode in every game mode. + - Moral of the story: do not assume anything in Mojang internals does what its name suggests... diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 0b72d7f9e..60013af1b 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.20.4"; - public const IS_DEVELOPMENT_BUILD = true; + public const IS_DEVELOPMENT_BUILD = false; public const BUILD_CHANNEL = "stable"; private function __construct(){