From 2c3193a115225cbfa3bc45bcfa532869c5a15f7b Mon Sep 17 00:00:00 2001 From: Snowiiii Date: Wed, 11 Dec 2024 16:05:19 +0100 Subject: [PATCH] Fix some typos --- docs/config/authentication.md | 2 +- docs/config/compression.md | 4 ++-- docs/config/introduction.md | 2 +- docs/developer/networking.md | 2 +- docs/developer/world.md | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/config/authentication.md b/docs/config/authentication.md index 7422911f6..eac986e43 100644 --- a/docs/config/authentication.md +++ b/docs/config/authentication.md @@ -1,6 +1,6 @@ # Authentication -Servers authenthicate with Mojang's session servers in order to ensure the client is playing on a legitmate, paid account. Pumpkin allows you to fully configure authentication. +Servers authenthicate with Mojang's session servers in order to ensure the client is playing on a legitimate, paid account. Pumpkin allows you to fully configure authentication. ## Configuring Authentication diff --git a/docs/config/compression.md b/docs/config/compression.md index f301a1f93..ac3e23c65 100644 --- a/docs/config/compression.md +++ b/docs/config/compression.md @@ -1,5 +1,5 @@ # Compression -Compression is used to reduce the size of packets. This is benefical to reduce bandwidth server side and also to help players on slower internet connections. +Compression is used to reduce the size of packets. This is beneficial to reduce bandwidth server side and also to help players on slower internet connections. ## Configuring Compression @@ -7,7 +7,7 @@ Compression is used to reduce the size of packets. This is benefical to reduce b Whether packet compression is enabled or not. > [!TIP] -> It might be benefical to disable compression if the server is behind a proxy. +> It might be beneficial to disable compression if the server is behind a proxy. :::code-group ```toml [features.toml] {2} diff --git a/docs/config/introduction.md b/docs/config/introduction.md index 7405e6382..41035e17b 100644 --- a/docs/config/introduction.md +++ b/docs/config/introduction.md @@ -14,7 +14,7 @@ Pumpkin's Configuration is split into a basic Configuration made for quick chang Pumpkin aims to support the latest Minecraft Version. If you want to host a Pumpkin server in any other version, there is a project called [ViaProxy](https://github.com/ViaVersion/ViaProxy). - Make sure to allow Proxy connections. -- Pumpkin and ViaProxy have no connection, don't submit issues reguarding their code. Furthermore, this is a 3rd party proxy and Pumpkin does not take any responsibility for the good or the bad. +- Pumpkin and ViaProxy have no connection, don't submit issues regarding their code. Furthermore, this is a 3rd party proxy and Pumpkin does not take any responsibility for the good or the bad. #### Key Features: diff --git a/docs/developer/networking.md b/docs/developer/networking.md index 4ec589aae..6b032d822 100644 --- a/docs/developer/networking.md +++ b/docs/developer/networking.md @@ -112,7 +112,7 @@ impl CPlayDisconnect { ### Adding a Serverbound Packet -1. Adding a Packet is easy. First, you have to derive serde Deserialize for packets. You should also use the `server_packet` macro to automaticly parse the Packet ID +1. Adding a Packet is easy. First, you have to derive serde Deserialize for packets. You should also use the `server_packet` macro to automatically parse the Packet ID ```rust #[derive(Deserialize)] diff --git a/docs/developer/world.md b/docs/developer/world.md index 64e0c6726..a0665e92b 100644 --- a/docs/developer/world.md +++ b/docs/developer/world.md @@ -17,7 +17,7 @@ More details can be found on the [Minecraft Wiki](https://minecraft.wiki/w/Regio Replacing the Region File Format after Minecraft Release 1.2, this is the file format used to store modern vanilla Java Minecraft worlds. The files stored in this format are .mca files, while using the same region logic, there were a number of changes. The notable changes include an increase -to a 256 hight limit, then to 320, as well as a higher number of block ID's. +to a 256 height limit, then to 320, as well as a higher number of block ID's. More details can be found on the [Minecraft Wiki](https://minecraft.wiki/w/Anvil_file_format). @@ -58,7 +58,7 @@ Pumpkin then calls for World Generation: AnvilChunkReader is called to process the region files for the given save - As stated above, region files store 32x32 chunks - > Each region file is named corrosponding to coordinates of where it is in the world + > Each region file is named corresponding to coordinates of where it is in the world > r.{}.{}.mca @@ -78,7 +78,7 @@ PlainsGenerator is called, as so far the plains is the only biome that has been - Bedrock is set at y = -64 - Flowers and short grass are scattered about randomly -SuperflatGenerator is also avaliable, but is not currently callable. +SuperflatGenerator is also available, but is not currently callable. - Bedrock is set at y = -64 - Dirt is set two blocks up