mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-02 08:13:10 +00:00
Release 4.10.1
This commit is contained in:
parent
d5bf88acc0
commit
a39938e6b6
@ -21,3 +21,18 @@ Released 26th October 2022.
|
|||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
- Improved type information available for various API methods in `World`.
|
- Improved type information available for various API methods in `World`.
|
||||||
|
|
||||||
|
# 4.10.1
|
||||||
|
Released 7th November 2022.
|
||||||
|
|
||||||
|
## Fixes
|
||||||
|
- Fixed spawning in the void if spawn terrain in a world is solid at the default spawn position.
|
||||||
|
- Fixed totems of undying activating when the player has 1 HP remaining.
|
||||||
|
- Fixed durable items such as tools becoming unbreakable when in stacks larger than 1. Now, the durability correctly resets when the tool breaks.
|
||||||
|
- TPS below 12 now correctly shows as red in `/status`. Previously, it showed as orange due to a condition ordering bug.
|
||||||
|
- Improved handling of missing arguments in user-defined `pocketmine.yml` command aliases. Previously, missing arguments would be filled with an empty string, which caused a variety of unexpected behaviour.
|
||||||
|
|
||||||
|
## Internals
|
||||||
|
- Added validation for the array given to `BaseInventory->setContents()` to ensure that it contains only `Item` instances.
|
||||||
|
- Silenced `PlayerAuthInputPacket` spam when the session is in the "spawn response" state.
|
||||||
|
- Updated to PHPStan 1.9.
|
||||||
|
@ -32,7 +32,7 @@ use function str_repeat;
|
|||||||
final class VersionInfo{
|
final class VersionInfo{
|
||||||
public const NAME = "PocketMine-MP";
|
public const NAME = "PocketMine-MP";
|
||||||
public const BASE_VERSION = "4.10.1";
|
public const BASE_VERSION = "4.10.1";
|
||||||
public const IS_DEVELOPMENT_BUILD = true;
|
public const IS_DEVELOPMENT_BUILD = false;
|
||||||
public const BUILD_CHANNEL = "stable";
|
public const BUILD_CHANNEL = "stable";
|
||||||
|
|
||||||
private function __construct(){
|
private function __construct(){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user