Skip to content

Commit

Permalink
Fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Snowiiii committed Dec 11, 2024
1 parent 4df1427 commit 2c3193a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/config/authentication.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions docs/config/compression.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# 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

#### `enabled`: Boolean
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}
Expand Down
2 changes: 1 addition & 1 deletion docs/config/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion docs/developer/networking.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
6 changes: 3 additions & 3 deletions docs/developer/world.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 2c3193a

Please sign in to comment.