From 5066d5225b7e3403badb8b6e52147285af7bfa3c Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 28 Dec 2020 23:03:32 +0000 Subject: [PATCH] Release 3.17.2 --- changelogs/3.17.md | 5 +++++ src/pocketmine/VersionInfo.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/changelogs/3.17.md b/changelogs/3.17.md index 577990168..0e710dbed 100644 --- a/changelogs/3.17.md +++ b/changelogs/3.17.md @@ -21,3 +21,8 @@ Plugin developers should **only** update their required API to this version if y - Server uptime is now included in crash reports. - Hoes now take damage when used to break sponges. - Using lava as fuel in a furnace now leaves behind an empty bucket. + +# 3.17.2 +- Fixed region header corruption when chunks with larger-than-expected lengths are found. These chunks are now treated as corrupted, instead of automatically attempting to salvage them (which usually fails anyway). +- `RegionLoader->removeChunk()` now allows the space used by the removed chunk to be reused by future region saves. +- Extracted `Living->applyConsumptionResults()` from `Living->consumeObject()` (preparation for a future bug fix). diff --git a/src/pocketmine/VersionInfo.php b/src/pocketmine/VersionInfo.php index 0075f34a4..32d06c4f4 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.17.2"; -const IS_DEVELOPMENT_BUILD = true; +const IS_DEVELOPMENT_BUILD = false; const BUILD_NUMBER = 0;