From 531f3408a0e5dec9acd58c97ca8c8a75b1cced84 Mon Sep 17 00:00:00 2001 From: BruceChen Date: Thu, 8 Sep 2022 17:39:58 +0800 Subject: [PATCH] Fix format error --- MinecraftClient/Commands/Inventory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MinecraftClient/Commands/Inventory.cs b/MinecraftClient/Commands/Inventory.cs index 7245fec4..81e90bc8 100644 --- a/MinecraftClient/Commands/Inventory.cs +++ b/MinecraftClient/Commands/Inventory.cs @@ -188,7 +188,7 @@ namespace MinecraftClient.Commands else { StringBuilder response = new(); - response.AppendLine(Translations.Get("cmd.inventory.inventories")).Append(':'); + response.Append(Translations.Get("cmd.inventory.inventories")).Append(":\n"); foreach ((int invId, Container inv) in handler.GetInventories()) response.AppendLine(String.Format(" #{0}: {1}ยง8", invId, inv.Title)); response.Append(CmdUsage);