From 7a747d6f9347273467b5ecc1963998c949ff6a7a Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 22 Jul 2019 17:28:33 +0100 Subject: [PATCH] Release 3.9.2 --- changelogs/3.9.md | 8 ++++++++ src/pocketmine/VersionInfo.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/changelogs/3.9.md b/changelogs/3.9.md index 1f8f68545..2f35ab897 100644 --- a/changelogs/3.9.md +++ b/changelogs/3.9.md @@ -44,3 +44,11 @@ Plugin developers should **only** update their required API to this version if y - Fixed `Entity->setFireTicks()` with a value of `0` setting the on-fire flag. - Silenced a debug message which appeared every time a player right-clicked a block. - Updated constants for `LevelSoundEventPacket`. + +# 3.9.2 +- Logger warnings for illegal player movements have been lowered to debug. +- TNT explosions now start from the center instead of the base. This fixes unexpected results when TNT is lit on top of obsidian. +- Fixed the `loadbefore` directive in `plugin.yml` sometimes being ignored. +- Fixed `Item->setCustomName()` with an empty string leaving behind an empty tag. +- Fixed incorrect positioning of bucket empty sound. +- Fixed some incorrect tag parsing in `/give` involving quoted numbers. diff --git a/src/pocketmine/VersionInfo.php b/src/pocketmine/VersionInfo.php index 97ccfb941..1f3d3e076 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.9.2"; -const IS_DEVELOPMENT_BUILD = true; +const IS_DEVELOPMENT_BUILD = false; const BUILD_NUMBER = 0;