From 31f67a97b33a3c6f5216addb6c7a84cd20682217 Mon Sep 17 00:00:00 2001 From: Isse Date: Thu, 23 Nov 2023 12:06:58 +0100 Subject: [PATCH] clippy fix --- voxygen/src/cmd.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voxygen/src/cmd.rs b/voxygen/src/cmd.rs index fe413fd553..e5b0e485fc 100644 --- a/voxygen/src/cmd.rs +++ b/voxygen/src/cmd.rs @@ -184,7 +184,7 @@ impl ClientEntityTarget { fn preproccess_command( session_state: &mut SessionState, command: &ChatCommandKind, - args: &mut Vec, + args: &mut [String], ) -> CommandResult { let mut cmd_args = match command { ChatCommandKind::Client(cmd) => cmd.data().args,