From 1bfd6f2a90d841cf456e6e8e8f31ec7ef7256e34 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sun, 7 Jul 2019 17:49:37 +0100 Subject: [PATCH] Release 3.8.6 --- changelogs/3.8.md | 8 ++++++++ src/pocketmine/VersionInfo.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/changelogs/3.8.md b/changelogs/3.8.md index 7255a77ee..c80432c09 100644 --- a/changelogs/3.8.md +++ b/changelogs/3.8.md @@ -55,3 +55,11 @@ This changelog **does not account for protocol changes**. If your plugin uses th - Fixed sluggish playercount updating on MOTD. - Added new MultiRecipe UUIDs. - Added an extra field to `StartGamePacket` to resolve minor incompatibility issues on different 1.11.x patch versions. + +# 3.8.6 +- Fixed `Entity->isNameTagAlwaysVisible()` not working. +- Log messages are now cleaned of invalid UTF-8 sequences before emitting them. +- Fixed negative integers being considered as strings for world seeds. +- Fixed out-of-bounds access on invalid inventory data in player data saves. +- Fixed crash when custom liquids have flow decays which aren't factors of 4. +- Fixed `Entity->noDamageTicks` not working when the entity had no previous damage cause. diff --git a/src/pocketmine/VersionInfo.php b/src/pocketmine/VersionInfo.php index 5166c5991..e6ab592ad 100644 --- a/src/pocketmine/VersionInfo.php +++ b/src/pocketmine/VersionInfo.php @@ -23,5 +23,5 @@ namespace pocketmine; const NAME = "PocketMine-MP"; const BASE_VERSION = "3.8.6"; -const IS_DEVELOPMENT_BUILD = true; +const IS_DEVELOPMENT_BUILD = false; const BUILD_NUMBER = 0;