From 4f5f20450735d5eb0d3703a69caa4d00def71324 Mon Sep 17 00:00:00 2001 From: The Dax Date: Mon, 14 Jul 2025 16:41:03 -0400 Subject: [PATCH] Redundancy nit. --- src/world/chat_handler.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/world/chat_handler.rs b/src/world/chat_handler.rs index 039dec0..72b1a6c 100644 --- a/src/world/chat_handler.rs +++ b/src/world/chat_handler.rs @@ -96,12 +96,12 @@ impl ChatHandler { if result.is_some() { connection.send_inventory(false).await; - true } else { tracing::error!(ERR_INVENTORY_ADD_FAILED); connection.send_message(ERR_INVENTORY_ADD_FAILED).await; - true } + + true } "!reload" => { connection.reload_scripts();