mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-10 13:35:29 +00:00
Release 4.0.0-BETA3
This commit is contained in:
parent
5f1e66478b
commit
9bc07a9cc0
@ -1315,6 +1315,8 @@ Released 10th September 2021.
|
||||
|
||||
|
||||
## General
|
||||
- Added support for Minecraft: Bedrock Edition 1.17.30.
|
||||
- Dropped support for Minecraft: Bedrock Edition 1.17.1x.
|
||||
- `tools/convert-world.php` now writes errors to stderr and sets the proper exit code.
|
||||
- Explosions now use the standard mechanism for processing block updates. Previously, it used a special mechanism due to prohibitively poor efficiency of the standard algorithm. Since these inefficiencies have now been addressed, explosions can now be consistent with everything else, with minimal performance impact.
|
||||
- Command usage strings are no longer automatically translated (use `Translatable` instead of bare string keys).
|
||||
@ -1323,6 +1325,7 @@ Released 10th September 2021.
|
||||
## Fixes
|
||||
- `ItemFactory->isRegistered()` no longer crashes when given negative item IDs.
|
||||
- Furnaces now continue to operate after reloading the chunk they were contained in.
|
||||
- Fixed being unable to reconnect for 10 seconds after disconnecting in some cases.
|
||||
|
||||
## API changes
|
||||
- The following API methods have been added:
|
||||
|
@ -30,9 +30,9 @@ use function str_repeat;
|
||||
final class VersionInfo{
|
||||
public const NAME = "PocketMine-MP";
|
||||
public const BASE_VERSION = "4.0.0-BETA3";
|
||||
public const IS_DEVELOPMENT_BUILD = true;
|
||||
public const IS_DEVELOPMENT_BUILD = false;
|
||||
public const BUILD_NUMBER = 0;
|
||||
public const BUILD_CHANNEL = "";
|
||||
public const BUILD_CHANNEL = "beta";
|
||||
|
||||
private function __construct(){
|
||||
//NOOP
|
||||
|
Loading…
x
Reference in New Issue
Block a user