diff options
| author | mat <git@matdoes.dev> | 2024-01-20 17:35:54 -0600 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2024-01-20 17:35:54 -0600 |
| commit | 7feee2954d14ecd42e1b0a5143d4540ef79a941d (patch) | |
| tree | a506cc6d8680c133d311db276f3b4f743afe4685 /azalea-protocol/src/packets/game | |
| parent | 73be589e7ffa826a32e7b88dad17b6b73d7aba3c (diff) | |
| download | azalea-drasl-7feee2954d14ecd42e1b0a5143d4540ef79a941d.tar.xz | |
remove unnecessary map_err
Diffstat (limited to 'azalea-protocol/src/packets/game')
| -rwxr-xr-x | azalea-protocol/src/packets/game/clientbound_explode_packet.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/clientbound_explode_packet.rs b/azalea-protocol/src/packets/game/clientbound_explode_packet.rs index 58e61e2e..23c416d1 100755 --- a/azalea-protocol/src/packets/game/clientbound_explode_packet.rs +++ b/azalea-protocol/src/packets/game/clientbound_explode_packet.rs @@ -121,7 +121,7 @@ impl McBufWritable for ClientboundExplodePacket { let sound_event_resource_location = ResourceLocation::new(&self.explosion_sound.to_string()); - sound_event_resource_location.write_into(buf)?; + sound_event_resource_location.write_into(buf)?; Ok(()) } |
