aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_disguised_chat.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-12-11 23:21:42 -1030
committermat <git@matdoes.dev>2025-12-11 23:21:42 -1030
commitca70e5e321a3c174c53d0650feed84db471ac30d (patch)
tree43042fa40c2f3d7f30ea56e1ee84c59dcb13be66 /azalea-protocol/src/packets/game/c_disguised_chat.rs
parent918214e8ba4eae65daf5d2da17aa0022f2ae5212 (diff)
downloadazalea-drasl-ca70e5e321a3c174c53d0650feed84db471ac30d.tar.xz
enable str_to_string clippy lint
Diffstat (limited to 'azalea-protocol/src/packets/game/c_disguised_chat.rs')
-rw-r--r--azalea-protocol/src/packets/game/c_disguised_chat.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/c_disguised_chat.rs b/azalea-protocol/src/packets/game/c_disguised_chat.rs
index 1b7505c6..31cdc0c6 100644
--- a/azalea-protocol/src/packets/game/c_disguised_chat.rs
+++ b/azalea-protocol/src/packets/game/c_disguised_chat.rs
@@ -50,7 +50,7 @@ impl ClientboundDisguisedChat {
}
let translation_key = self.chat_type.translation_key(registries);
- let component = TranslatableComponent::new(translation_key.to_string(), args);
+ let component = TranslatableComponent::new(translation_key.to_owned(), args);
FormattedText::Translatable(component)
}