mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-06 11:57:10 +00:00
changelog: added a Configuration section
this might be incomplete. [ci skip]
This commit is contained in:
parent
e4750ad2cd
commit
f5da91b42a
@ -5,6 +5,7 @@ This major version features substantial changes throughout the core, including s
|
||||
## Contents
|
||||
* [Core](#core)
|
||||
+ [General](#general)
|
||||
+ [Configuration](#configuration)
|
||||
+ [World handling](#world-handling)
|
||||
- [Interface](#interface)
|
||||
- [Functional](#functional)
|
||||
@ -64,7 +65,7 @@ This major version features substantial changes throughout the core, including s
|
||||
- Remote console (RCON) has been removed. The [RconServer](https://github.com/pmmp/RconServer) plugin is provided as a substitute.
|
||||
- Spawn protection has been removed. The [BasicSpawnProtection](https://github.com/pmmp/BasicSpawnProtection) plugin is provided as a substitute.
|
||||
- CTRL+C signal handling has been removed. The [PcntlSignalHandler](https://github.com/pmmp/PcntlSignalHandler) plugin is provided as a substitute.
|
||||
- Player movement anti-cheat has been removed. Its corresponding `pocketmine.yml` setting `player.anti-cheat.allow-movement-cheats` has been removed.
|
||||
- Player movement anti-cheat has been removed.
|
||||
- GS4 Query no longer breaks when disabling RakLib.
|
||||
- The `pocketmine_chunkutils` PHP extension has been dropped.
|
||||
- New PHP extensions are required by this version:
|
||||
@ -76,6 +77,15 @@ This major version features substantial changes throughout the core, including s
|
||||
- Spawning inside blocks (or above the ground) when respawning with a custom spawn position set
|
||||
- Player spawn positions sticking to the old location when world spawn position changed - this was because the world spawn at time of player creation was used as the player's custom spawn, so the bug will persist for older player data, but will work as expected for new players.
|
||||
|
||||
### Configuration
|
||||
- World presets can now be provided as a `preset` key in `pocketmine.yml`, instead of putting them in the `generator` key.
|
||||
- The following new options have been added to `pocketmine.yml`:
|
||||
- `chunk-ticking.blocks-per-subchunk-per-tick` (default `3`): Increasing this value will increase the rate at which random block updates happen (e.g. grass growth).
|
||||
- `network.enable-encryption` (default `true`): Controls whether Minecraft network packets are encrypted or not.
|
||||
- The following options have been removed from `pocketmine.yml`:
|
||||
- `chunk-ticking.light-updates`: Since lighting is needed for basic vanilla functionality to work, allowing this to be disabled without disabling chunk ticking made no sense. If you don't want light calculation to occur, you can disable chunk ticking altogether.
|
||||
- `player.anti-cheat.allow-movement-cheats`
|
||||
|
||||
### World handling
|
||||
#### Interface
|
||||
- Progress of spawn terrain chunk generation is now logged during initial world creation.
|
||||
|
Loading…
x
Reference in New Issue
Block a user