diff options
| author | mat <git@matdoes.dev> | 2025-01-21 23:55:44 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-01-21 23:55:44 +0000 |
| commit | f2d8d4211bc9a70a4963513217d211c125a6b03f (patch) | |
| tree | ffc0845c6d46053f32e6316d9f0f75e273abc153 /azalea-client/src | |
| parent | b0b57aa7d4319111230d6f499ed5f4642b5aa1e1 (diff) | |
| download | azalea-drasl-f2d8d4211bc9a70a4963513217d211c125a6b03f.tar.xz | |
fix name of field in CommonPlayerSpawnInfo
Diffstat (limited to 'azalea-client/src')
| -rw-r--r-- | azalea-client/src/packet_handling/game.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-client/src/packet_handling/game.rs b/azalea-client/src/packet_handling/game.rs index 4553ae6a..b5e4432f 100644 --- a/azalea-client/src/packet_handling/game.rs +++ b/azalea-client/src/packet_handling/game.rs @@ -256,7 +256,7 @@ pub fn process_packet_events(ecs: &mut World) { let dimension_name = ResourceLocation::new(&p.common.dimension.to_string()); let Some(dimension) = dimension_type_element.map.get(&dimension_name) else { - error!("No dimension_type with name {dimension_name}") + error!("No dimension_type with name {dimension_name}"); continue; }; |
