diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 06bed628c..3599738cb 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -29,6 +29,8 @@ There are several ways you can contribute to Pumpkin:
The Documentation of Pumpkin can be found at
+**Tip: [typos](https://github.com/crate-ci/typos) is a great Project to detect and automatically fix typos
+
### Coding Guidelines
- **Working with Tokio and Rayon:**
diff --git a/pumpkin-config/src/compression.rs b/pumpkin-config/src/compression.rs
index 2f3835f07..7a7b22c81 100644
--- a/pumpkin-config/src/compression.rs
+++ b/pumpkin-config/src/compression.rs
@@ -21,7 +21,7 @@ impl Default for CompressionConfig {
#[derive(Deserialize, Serialize, Clone)]
#[serde(default)]
-/// We have this in a Seperate struct so we can use it outside of the Config
+/// We have this in a Separate struct so we can use it outside of the Config
pub struct CompressionInfo {
/// The compression threshold used when compression is enabled
pub threshold: u32,
diff --git a/pumpkin-core/src/random/mod.rs b/pumpkin-core/src/random/mod.rs
index 546e082ef..8e147cb10 100644
--- a/pumpkin-core/src/random/mod.rs
+++ b/pumpkin-core/src/random/mod.rs
@@ -254,7 +254,7 @@ mod tests {
-1992287231i32,
),
("求同存异", 847053876),
- // This might look wierd because hebrew is text is right to left
+ // This might look weird because hebrew is text is right to left
("אבְּרֵאשִׁ֖ית בָּרָ֣א אֱלֹהִ֑ים אֵ֥ת הַשָּׁמַ֖יִם וְאֵ֥ת הָאָֽרֶץ:", 1372570871),
("संस्कृत-", 1748614838),
("minecraft:offset", -920384768i32),
diff --git a/pumpkin-core/src/text/hover.rs b/pumpkin-core/src/text/hover.rs
index 867a4a3b6..35182e8e3 100644
--- a/pumpkin-core/src/text/hover.rs
+++ b/pumpkin-core/src/text/hover.rs
@@ -2,7 +2,7 @@ use std::borrow::Cow;
use serde::{Deserialize, Serialize};
-use super::Text;
+use super::TextComponent;
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq, Hash)]
#[serde(tag = "action", content = "contents", rename_all = "snake_case")]
@@ -28,6 +28,6 @@ pub enum HoverEvent<'a> {
kind: Option>,
/// Optional custom name for the entity
#[serde(default, skip_serializing_if = "Option::is_none")]
- name: Option>,
+ name: Option>>,
},
}
diff --git a/pumpkin-core/src/text/mod.rs b/pumpkin-core/src/text/mod.rs
index 32299fb1c..f94e39563 100644
--- a/pumpkin-core/src/text/mod.rs
+++ b/pumpkin-core/src/text/mod.rs
@@ -14,11 +14,7 @@ pub mod color;
pub mod hover;
pub mod style;
-#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq, Hash)]
-#[serde(transparent)]
-pub struct Text<'a>(pub Box>);
-
-// Represents a Text component
+/// Represents a Text component
#[derive(Clone, Debug, Deserialize, PartialEq, Eq, Hash)]
#[serde(rename_all = "camelCase")]
pub struct TextComponent<'a> {
@@ -29,6 +25,7 @@ pub struct TextComponent<'a> {
/// Also has `ClickEvent
#[serde(flatten)]
pub style: Style<'a>,
+ #[serde(default, skip_serializing_if = "Vec::is_empty")]
/// Extra text components
pub extra: Vec>,
}
@@ -228,7 +225,7 @@ pub enum TextContent<'a> {
Translate {
translate: Cow<'a, str>,
#[serde(default, skip_serializing_if = "Vec::is_empty")]
- with: Vec>,
+ with: Vec>,
},
/// Displays the name of one or more entities found by a selector.
EntityNames {
diff --git a/pumpkin-protocol/src/bytebuf/serializer.rs b/pumpkin-protocol/src/bytebuf/serializer.rs
index cb2f78660..d683bb035 100644
--- a/pumpkin-protocol/src/bytebuf/serializer.rs
+++ b/pumpkin-protocol/src/bytebuf/serializer.rs
@@ -55,7 +55,7 @@ impl ser::Error for SerializerError {
// Enums are written as a varint of the index
// Structs are ignored
// Iterables' values are written in order, but NO information (e.g. size) about the
-// iterable itself is written (list sizes should be a seperate field)
+// iterable itself is written (list sizes should be a separate field)
impl ser::Serializer for &mut Serializer {
type Ok = ();
type Error = SerializerError;
@@ -137,7 +137,7 @@ impl ser::Serializer for &mut Serializer {
Ok(())
}
fn serialize_seq(self, _len: Option) -> Result {
- // here is where all arrays/list getting written, usally we prefix the length of every length with an var int. The problem is
+ // here is where all arrays/list getting written, usually we prefix the length of every length with an var int. The problem is
// that byte arrays also getting thrown in here, and we don't want to prefix them
Ok(self)
}
diff --git a/pumpkin-protocol/src/client/play/c_commands.rs b/pumpkin-protocol/src/client/play/c_commands.rs
index 32dc71df9..bfd885562 100644
--- a/pumpkin-protocol/src/client/play/c_commands.rs
+++ b/pumpkin-protocol/src/client/play/c_commands.rs
@@ -69,10 +69,10 @@ impl ProtoNode<'_> {
name: _,
is_executable,
parser: _,
- override_suggestion_type: override_suggestion_tpye,
+ override_suggestion_type,
} => {
let mut n = 2;
- if override_suggestion_tpye.is_some() {
+ if override_suggestion_type.is_some() {
n |= Self::FLAG_HAS_SUGGESTION_TYPE
}
if is_executable {
diff --git a/pumpkin-protocol/src/client/play/c_teleport_entity.rs b/pumpkin-protocol/src/client/play/c_teleport_entity.rs
index 4327ed658..b5bc2151c 100644
--- a/pumpkin-protocol/src/client/play/c_teleport_entity.rs
+++ b/pumpkin-protocol/src/client/play/c_teleport_entity.rs
@@ -4,7 +4,7 @@ use pumpkin_macros::client_packet;
use crate::{ClientPacket, PositionFlag, VarInt};
#[client_packet("play:teleport_entity")]
-pub struct CTeleportEntitiy<'a> {
+pub struct CTeleportEntity<'a> {
entity_id: VarInt,
position: Vector3,
delta: Vector3,
@@ -14,7 +14,7 @@ pub struct CTeleportEntitiy<'a> {
on_ground: bool,
}
-impl<'a> CTeleportEntitiy<'a> {
+impl<'a> CTeleportEntity<'a> {
pub fn new(
entity_id: VarInt,
position: Vector3,
@@ -36,7 +36,7 @@ impl<'a> CTeleportEntitiy<'a> {
}
}
-impl ClientPacket for CTeleportEntitiy<'_> {
+impl ClientPacket for CTeleportEntity<'_> {
fn write(&self, bytebuf: &mut crate::bytebuf::ByteBuffer) {
bytebuf.put_var_int(&self.entity_id);
bytebuf.put_f64(self.position.x);
diff --git a/pumpkin-protocol/src/lib.rs b/pumpkin-protocol/src/lib.rs
index e4e20b22a..f15928e95 100644
--- a/pumpkin-protocol/src/lib.rs
+++ b/pumpkin-protocol/src/lib.rs
@@ -22,7 +22,7 @@ pub const CURRENT_MC_PROTOCOL: u32 = 769;
pub const MAX_PACKET_SIZE: i32 = 2097152;
-/// usally uses a namespace like "minecraft:thing"
+/// usually uses a namespace like "minecraft:thing"
pub type Identifier = String;
pub type VarIntType = i32;
pub type VarLongType = i64;
diff --git a/pumpkin-protocol/src/packet_decoder.rs b/pumpkin-protocol/src/packet_decoder.rs
index 3af766dbb..9472c28ee 100644
--- a/pumpkin-protocol/src/packet_decoder.rs
+++ b/pumpkin-protocol/src/packet_decoder.rs
@@ -9,7 +9,7 @@ type Cipher = cfb8::Decryptor;
// Decoder: Client -> Server
// Supports ZLib decoding/decompression
-// Supports Aes128 Encyption
+// Supports Aes128 Encryption
pub struct PacketDecoder {
buf: BytesMut,
decompress_buf: BytesMut,
@@ -135,7 +135,7 @@ impl PacketDecoder {
}
}
- /// Sets ZLib Deompression
+ /// Sets ZLib Decompression
pub fn set_compression(&mut self, compression: bool) {
self.compression = compression;
}
@@ -183,10 +183,6 @@ impl PacketDecoder {
pub enum PacketDecodeError {
#[error("failed to decode packet ID")]
DecodeID,
- #[error("failed to write into decoder: {0}")]
- FailedWrite(String),
- #[error("failed to flush decoder")]
- FailedFinish,
#[error("packet exceeds maximum length")]
TooLong,
#[error("packet length is out of bounds")]
diff --git a/pumpkin-protocol/src/packet_encoder.rs b/pumpkin-protocol/src/packet_encoder.rs
index 14ae6a361..0df2b1570 100644
--- a/pumpkin-protocol/src/packet_encoder.rs
+++ b/pumpkin-protocol/src/packet_encoder.rs
@@ -11,7 +11,7 @@ type Cipher = cfb8::Encryptor;
// Encoder: Server -> Client
// Supports ZLib endecoding/compression
-// Supports Aes128 Encyption
+// Supports Aes128 Encryption
pub struct PacketEncoder {
buf: BytesMut,
compress_buf: Vec,
@@ -65,7 +65,7 @@ impl PacketEncoder {
let compressed_size = self
.compressor
.zlib_compress(data_to_compress, &mut self.compress_buf)
- .map_err(|_| PacketEncodeError::CompressionFailed)?;
+ .map_err(|e| PacketEncodeError::CompressionFailed(e.to_string()))?;
// Resize compress_buf to actual compressed size
self.compress_buf.resize(compressed_size, 0);
@@ -169,21 +169,10 @@ impl PacketEncoder {
#[derive(Error, Debug)]
pub enum PacketEncodeError {
- #[error("failed to encode packet data")]
- EncodeData,
- #[error("failed to write encoded packet")]
- EncodeFailedWrite,
#[error("packet exceeds maximum length")]
TooLong,
- #[error("compression failed")]
- CompressionFailed,
-}
-
-impl PacketEncodeError {
- pub fn kickable(&self) -> bool {
- // We no longer have a connection, so dont try to kick the player, just close
- !matches!(self, Self::EncodeData | Self::EncodeFailedWrite)
- }
+ #[error("compression failed {0}")]
+ CompressionFailed(String),
}
#[cfg(test)]
diff --git a/pumpkin-protocol/src/query.rs b/pumpkin-protocol/src/query.rs
index 8943d91ef..9cd0444ce 100644
--- a/pumpkin-protocol/src/query.rs
+++ b/pumpkin-protocol/src/query.rs
@@ -24,7 +24,7 @@ impl RawQueryPacket {
match reader.read_u16().await.map_err(|_| ())? {
// Magic should always equal 65277
- // Since it denotes the protocl being used
+ // Since it denotes the protocol being used
// Should not attempt to decode packets with other magic values
65277 => Ok(Self {
packet_type: PacketType::from_u8(reader.read_u8().await.map_err(|_| ())?)
@@ -52,7 +52,7 @@ impl SHandshake {
#[derive(PartialEq, Debug)]
pub struct SStatusRequest {
pub session_id: i32,
- pub challange_token: i32,
+ pub challenge_token: i32,
// Full status request and basic status request are pretty much similar
// So might as just use the same struct
pub is_full_request: bool,
@@ -62,7 +62,7 @@ impl SStatusRequest {
pub async fn decode(packet: &mut RawQueryPacket) -> Result {
Ok(Self {
session_id: packet.reader.read_i32().await.map_err(|_| ())?,
- challange_token: packet.reader.read_i32().await.map_err(|_| ())?,
+ challenge_token: packet.reader.read_i32().await.map_err(|_| ())?,
is_full_request: {
let mut buf = [0; 4];
@@ -74,7 +74,7 @@ impl SStatusRequest {
Ok(0) => false,
Ok(4) => true,
_ => {
- // Just ingnore malformed packets or errors
+ // Just ignore malformed packets or errors
return Err(());
}
}
@@ -88,7 +88,7 @@ pub struct CHandshake {
// For simplicity use a number type
// Should be encoded as string here
// Will be converted in encoding
- pub challange_token: i32,
+ pub challenge_token: i32,
}
impl CHandshake {
@@ -99,10 +99,10 @@ impl CHandshake {
buf.write_u8(9).await.unwrap();
// Session ID
buf.write_i32(self.session_id).await.unwrap();
- // Challange token
+ // Challenge token
// Use CString to add null terminator and ensure no null bytes in the middle of data
// Unwrap here since there should be no errors with nulls in the middle of data
- let token = CString::new(self.challange_token.to_string()).unwrap();
+ let token = CString::new(self.challenge_token.to_string()).unwrap();
buf.extend_from_slice(token.as_bytes_with_nul());
buf
@@ -249,7 +249,7 @@ async fn test_handshake_response() {
let packet = CHandshake {
session_id: 1,
- challange_token: 9513307,
+ challenge_token: 9513307,
};
assert_eq!(bytes, packet.encode().await)
@@ -265,7 +265,7 @@ async fn test_basic_stat_request() {
let actual_packet = SStatusRequest {
session_id: 1,
- challange_token: 9513307,
+ challenge_token: 9513307,
is_full_request: false,
};
@@ -304,7 +304,7 @@ async fn test_full_stat_request() {
let actual_packet = SStatusRequest {
session_id: 1,
- challange_token: 9513307,
+ challenge_token: 9513307,
is_full_request: true,
};
diff --git a/pumpkin-registry/src/lib.rs b/pumpkin-registry/src/lib.rs
index 8be13d6f5..6960a183a 100644
--- a/pumpkin-registry/src/lib.rs
+++ b/pumpkin-registry/src/lib.rs
@@ -146,11 +146,10 @@ impl Registry {
.wolf_variant
.iter()
.map(|s| {
- // I present to you, A ugly hack which is done because Mojang developers decited to put is_ instead of just on 3 wolf varients while all others have just the biome, this causes the client to not find the biome and disconnect
- let varient = s.1.clone();
+ let variant = s.1.clone();
RegistryEntry {
entry_id: s.0,
- data: pumpkin_nbt::serializer::to_bytes_unnamed(&varient).unwrap(),
+ data: pumpkin_nbt::serializer::to_bytes_unnamed(&variant).unwrap(),
}
})
.collect();
diff --git a/pumpkin-world/src/chunk/mod.rs b/pumpkin-world/src/chunk/mod.rs
index a04e9f5b2..fcbb53f13 100644
--- a/pumpkin-world/src/chunk/mod.rs
+++ b/pumpkin-world/src/chunk/mod.rs
@@ -273,22 +273,22 @@ impl ChunkData {
Some(d) => d,
};
- // How many bits each block has in one of the pallete u64s
+ // How many bits each block has in one of the palette u64s
let block_bit_size = {
let size = 64 - (palette.len() as i64 - 1).leading_zeros();
max(4, size)
};
- // How many blocks there are in one of the palletes u64s
- let blocks_in_pallete = 64 / block_bit_size;
+ // How many blocks there are in one of the palettes u64s
+ let blocks_in_palette = 64 / block_bit_size;
let mask = (1 << block_bit_size) - 1;
'block_loop: for block in block_data.iter() {
- for i in 0..blocks_in_pallete {
+ for i in 0..blocks_in_palette {
let index = (block >> (i * block_bit_size)) & mask;
let block = &palette[index as usize];
// TODO allow indexing blocks directly so we can just use block_index and save some time?
- // this is fine because we initalized the heightmap of `blocks`
+ // this is fine because we initialized the heightmap of `blocks`
// from the cached value in the world file
blocks.set_block_no_heightmap_update(
ChunkRelativeBlockCoordinates {
@@ -301,7 +301,7 @@ impl ChunkData {
block_index += 1;
- // if `SUBCHUNK_VOLUME `is not divisible by `blocks_in_pallete` the block_data
+ // if `SUBCHUNK_VOLUME `is not divisible by `blocks_in_palette` the block_data
// can sometimes spill into other subchunks. We avoid that by aborting early
if (block_index % SUBCHUNK_VOLUME) == 0 {
break 'block_loop;
diff --git a/pumpkin-world/src/world_gen/noise/router.rs b/pumpkin-world/src/world_gen/noise/router.rs
index 782600fdf..ddf605c3f 100644
--- a/pumpkin-world/src/world_gen/noise/router.rs
+++ b/pumpkin-world/src/world_gen/noise/router.rs
@@ -271,7 +271,7 @@ impl BaseRouter {
.clone()
.min(ConstantFunction::new(5f64).mul(CAVES_ENTRANCES_OVERWORLD.clone()));
- let mapped_cave_entraces_overworld = RangeFunction::<
+ let mapped_cave_entrances_overworld = RangeFunction::<
NoEnvironment,
SharedComponentReference,
SharedComponentReference,
@@ -286,7 +286,7 @@ impl BaseRouter {
let blended_cave_entrances_overworld = apply_blend_density(apply_surface_slides(
amplified,
- mapped_cave_entraces_overworld.into(),
+ mapped_cave_entrances_overworld.into(),
))
.min(CAVES_NOODLE_OVERWORLD.clone());
diff --git a/pumpkin-world/src/world_gen/proto_chunk.rs b/pumpkin-world/src/world_gen/proto_chunk.rs
index 366df514c..aceefc188 100644
--- a/pumpkin-world/src/world_gen/proto_chunk.rs
+++ b/pumpkin-world/src/world_gen/proto_chunk.rs
@@ -120,7 +120,7 @@ impl ProtoChunk {
let horizontal_cell_block_count = self.sampler.horizontal_cell_block_count();
let vertical_cell_block_count = self.sampler.vertical_cell_block_count();
- let horizonal_cells = CHUNK_DIM / horizontal_cell_block_count;
+ let horizontal_cells = CHUNK_DIM / horizontal_cell_block_count;
let min_y = self.sampler.min_y();
let minimum_cell_y = min_y / vertical_cell_block_count as i8;
@@ -133,10 +133,10 @@ impl ProtoChunk {
// - All unsafe functions are encapsulated and no mutable references are leaked
unsafe {
self.sampler.sample_start_density();
- for cell_x in 0..horizonal_cells {
+ for cell_x in 0..horizontal_cells {
self.sampler.sample_end_density(cell_x);
- for cell_z in 0..horizonal_cells {
+ for cell_z in 0..horizontal_cells {
for cell_y in (0..cell_height).rev() {
self.sampler.on_sampled_cell_corners(cell_y, cell_z);
for local_y in (0..vertical_cell_block_count).rev() {
diff --git a/pumpkin/src/client/container.rs b/pumpkin/src/client/container.rs
index 2ebbb4a17..e89026380 100644
--- a/pumpkin/src/client/container.rs
+++ b/pumpkin/src/client/container.rs
@@ -314,15 +314,9 @@ impl Player {
let find_condition = |(slot_number, slot): (usize, &mut Option)| {
// TODO: Check for max item count here
match slot {
- Some(item) => {
- if item.item_id == item_in_pressed_slot.item_id
- && item.item_count != 64
- {
- Some(slot_number)
- } else {
- None
- }
- }
+ Some(item) => (item.item_id == item_in_pressed_slot.item_id
+ && item.item_count != 64)
+ .then_some(slot_number),
None => Some(slot_number),
}
};
@@ -496,11 +490,7 @@ impl Player {
None
} else {
let entity_id = player.entity_id();
- if player_ids.contains(&entity_id) {
- Some(player.clone())
- } else {
- None
- }
+ player_ids.contains(&entity_id).then(|| player.clone())
}
})
.collect_vec();
@@ -560,13 +550,11 @@ impl Player {
let slots = inventory.slots_with_hotbar_first();
let matching_slots = slots.filter_map(|slot| {
- if let Some(item_slot) = slot.as_ref() {
- if item_slot.item_id == item.id && item_slot.item_count < max_stack {
+ if let Some(item_slot) = slot.as_mut() {
+ (item_slot.item_id == item.id && item_slot.item_count < max_stack).then(|| {
let item_count = item_slot.item_count;
- Some((slot, item_count))
- } else {
- None
- }
+ (item_slot, item_count)
+ })
} else {
None
}
@@ -579,15 +567,15 @@ impl Player {
let amount_to_add = max_stack - item_count;
if let Some(amount_left) = amount.checked_sub(u32::from(amount_to_add)) {
amount = amount_left;
- *slot = Some(ItemStack {
+ *slot = ItemStack {
item_id: item.id,
item_count: item.components.max_stack_size,
- });
+ };
} else {
- *slot = Some(ItemStack {
+ *slot = ItemStack {
item_id: item.id,
item_count: max_stack - (amount_to_add - amount as u8),
- });
+ };
return;
}
}
diff --git a/pumpkin/src/client/mod.rs b/pumpkin/src/client/mod.rs
index 47a7a03b1..6c260447a 100644
--- a/pumpkin/src/client/mod.rs
+++ b/pumpkin/src/client/mod.rs
@@ -222,9 +222,7 @@ impl Client {
let mut enc = self.enc.lock().await;
if let Err(error) = enc.append_packet(packet) {
- if error.kickable() {
- self.kick(&error.to_string()).await;
- }
+ self.kick(&error.to_string()).await;
return;
}
@@ -445,7 +443,6 @@ impl Client {
"Failed to handle client packet id {} in Login State",
packet.id.0
);
- return Ok(());
}
};
Ok(())
diff --git a/pumpkin/src/client/player_packet.rs b/pumpkin/src/client/player_packet.rs
index 1dd55bf0f..9d74dcebd 100644
--- a/pumpkin/src/client/player_packet.rs
+++ b/pumpkin/src/client/player_packet.rs
@@ -722,7 +722,7 @@ impl Player {
let block_bounding_box = BoundingBox::from_block(&world_pos);
let bounding_box = entity.bounding_box.load();
- //TODO: Make this check for every entity in that posistion
+ //TODO: Make this check for every entity in that position
if !bounding_box.intersects(&block_bounding_box) {
world
.set_block_state(world_pos, block.default_state_id)
diff --git a/pumpkin/src/command/args/arg_entity.rs b/pumpkin/src/command/args/arg_entity.rs
index 996d1e60b..dce52240a 100644
--- a/pumpkin/src/command/args/arg_entity.rs
+++ b/pumpkin/src/command/args/arg_entity.rs
@@ -14,7 +14,7 @@ use crate::server::Server;
use super::super::args::ArgumentConsumer;
use super::{Arg, DefaultNameArgConsumer, FindArg, GetClientSideArgParser};
-/// todo: implement for entitites that aren't players
+/// todo: implement for entities that aren't players
///
/// For selecting a single entity, eg. using @s, a player name or entity uuid.
///
diff --git a/pumpkin/src/command/args/arg_position_2d.rs b/pumpkin/src/command/args/arg_position_2d.rs
index b855348ec..9dc450731 100644
--- a/pumpkin/src/command/args/arg_position_2d.rs
+++ b/pumpkin/src/command/args/arg_position_2d.rs
@@ -39,7 +39,7 @@ impl ArgumentConsumer for Position2DArgumentConsumer {
) -> Option> {
let pos = MaybeRelativePosition2D::try_new(args.pop()?, args.pop()?)?;
- let vec2 = pos.try_to_abolute(src.position())?;
+ let vec2 = pos.try_to_absolute(src.position())?;
Some(Arg::Pos2D(vec2))
}
@@ -64,7 +64,7 @@ impl MaybeRelativePosition2D {
Some(Self(x.try_into().ok()?, z.try_into().ok()?))
}
- fn try_to_abolute(self, origin: Option>) -> Option> {
+ fn try_to_absolute(self, origin: Option>) -> Option> {
Some(Vector2::new(
self.0.into_absolute(origin.map(|o| o.x))?,
self.1.into_absolute(origin.map(|o| o.z))?,
diff --git a/pumpkin/src/command/args/arg_postition_block.rs b/pumpkin/src/command/args/arg_position_block.rs
similarity index 100%
rename from pumpkin/src/command/args/arg_postition_block.rs
rename to pumpkin/src/command/args/arg_position_block.rs
diff --git a/pumpkin/src/command/args/mod.rs b/pumpkin/src/command/args/mod.rs
index 3274dd8d4..f27d850a5 100644
--- a/pumpkin/src/command/args/mod.rs
+++ b/pumpkin/src/command/args/mod.rs
@@ -32,7 +32,7 @@ pub(crate) mod arg_message;
pub(crate) mod arg_players;
pub(crate) mod arg_position_2d;
pub(crate) mod arg_position_3d;
-pub(crate) mod arg_postition_block;
+pub(crate) mod arg_position_block;
pub(crate) mod arg_resource_location;
pub(crate) mod arg_rotation;
pub(crate) mod arg_simple;
@@ -50,7 +50,7 @@ pub(crate) trait ArgumentConsumer: Sync + GetClientSideArgParser {
/// Used for tab completion (but only if argument suggestion type is "minecraft:ask_server"!).
///
- /// NOTE: This is called after this consumer's [`ArgumentConsumer::consume`] method returnd None, so if args is used here, make sure [`ArgumentConsumer::consume`] never returns None after mutating args.
+ /// NOTE: This is called after this consumer's [`ArgumentConsumer::consume`] method returned None, so if args is used here, make sure [`ArgumentConsumer::consume`] never returns None after mutating args.
async fn suggest<'a>(
&self,
sender: &CommandSender<'a>,
diff --git a/pumpkin/src/command/commands/cmd_bossbar.rs b/pumpkin/src/command/commands/cmd_bossbar.rs
index eb9d3c8a2..9caaea21f 100644
--- a/pumpkin/src/command/commands/cmd_bossbar.rs
+++ b/pumpkin/src/command/commands/cmd_bossbar.rs
@@ -463,7 +463,7 @@ impl CommandExecutor for BossbarSetExecuter {
.bossbars
.lock()
.await
- .update_visibilty(server, namespace.to_string(), visibility)
+ .update_visibility(server, namespace.to_string(), visibility)
.await
{
Ok(()) => {}
diff --git a/pumpkin/src/command/commands/cmd_fill.rs b/pumpkin/src/command/commands/cmd_fill.rs
index 031ba1143..1a01fb15d 100644
--- a/pumpkin/src/command/commands/cmd_fill.rs
+++ b/pumpkin/src/command/commands/cmd_fill.rs
@@ -1,5 +1,5 @@
use crate::command::args::arg_block::BlockArgumentConsumer;
-use crate::command::args::arg_postition_block::BlockPosArgumentConsumer;
+use crate::command::args::arg_position_block::BlockPosArgumentConsumer;
use crate::command::args::{ConsumedArgs, FindArg};
use crate::command::tree::CommandTree;
use crate::command::tree_builder::{argument, literal, require};
diff --git a/pumpkin/src/command/commands/cmd_setblock.rs b/pumpkin/src/command/commands/cmd_setblock.rs
index 4bd3b2644..0dd6ec9f1 100644
--- a/pumpkin/src/command/commands/cmd_setblock.rs
+++ b/pumpkin/src/command/commands/cmd_setblock.rs
@@ -3,7 +3,7 @@ use pumpkin_core::text::color::NamedColor;
use pumpkin_core::text::TextComponent;
use crate::command::args::arg_block::BlockArgumentConsumer;
-use crate::command::args::arg_postition_block::BlockPosArgumentConsumer;
+use crate::command::args::arg_position_block::BlockPosArgumentConsumer;
use crate::command::args::{ConsumedArgs, FindArg};
use crate::command::tree::CommandTree;
use crate::command::tree_builder::{argument, literal, require};
diff --git a/pumpkin/src/command/dispatcher.rs b/pumpkin/src/command/dispatcher.rs
index 4980c69ea..9448c505b 100644
--- a/pumpkin/src/command/dispatcher.rs
+++ b/pumpkin/src/command/dispatcher.rs
@@ -70,7 +70,7 @@ impl<'a> CommandDispatcher<'a> {
}
Err(pumpkin_error) => {
pumpkin_error.log();
- sender.send_message(TextComponent::text("Unknown internal error occured while running command. Please see server log").color(Color::Named(NamedColor::Red))).await;
+ sender.send_message(TextComponent::text("Unknown internal error occurred while running command. Please see server log").color(Color::Named(NamedColor::Red))).await;
}
}
}
diff --git a/pumpkin/src/entity/mod.rs b/pumpkin/src/entity/mod.rs
index 9be5e8aab..92544ccb1 100644
--- a/pumpkin/src/entity/mod.rs
+++ b/pumpkin/src/entity/mod.rs
@@ -11,7 +11,7 @@ use pumpkin_core::math::{
};
use pumpkin_entity::{entity_type::EntityType, pose::EntityPose, EntityId};
use pumpkin_protocol::{
- client::play::{CSetEntityMetadata, CTeleportEntitiy, Metadata},
+ client::play::{CSetEntityMetadata, CTeleportEntity, Metadata},
VarInt,
};
@@ -134,7 +134,7 @@ impl Entity {
pub async fn teleport(&self, position: Vector3, yaw: f32, pitch: f32) {
self.world
- .broadcast_packet_all(&CTeleportEntitiy::new(
+ .broadcast_packet_all(&CTeleportEntity::new(
self.entity_id.into(),
position,
Vector3::new(0.0, 0.0, 0.0),
diff --git a/pumpkin/src/entity/player.rs b/pumpkin/src/entity/player.rs
index 84a465451..030b484ae 100644
--- a/pumpkin/src/entity/player.rs
+++ b/pumpkin/src/entity/player.rs
@@ -86,7 +86,7 @@ pub struct Player {
/// The item currently being held by the player.
pub carried_item: AtomicCell