Fix format error

This commit is contained in:
BruceChen 2022-09-08 17:39:58 +08:00
parent 5181395bbd
commit 531f3408a0

View file

@ -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);