Skip to content

Commit 531f340

Browse files
committed
Fix format error
1 parent 5181395 commit 531f340

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MinecraftClient/Commands/Inventory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public override string Run(McClient handler, string command, Dictionary<string,
188188
else
189189
{
190190
StringBuilder response = new();
191-
response.AppendLine(Translations.Get("cmd.inventory.inventories")).Append(':');
191+
response.Append(Translations.Get("cmd.inventory.inventories")).Append(":\n");
192192
foreach ((int invId, Container inv) in handler.GetInventories())
193193
response.AppendLine(String.Format(" #{0}: {1}§8", invId, inv.Title));
194194
response.Append(CmdUsage);

0 commit comments

Comments
 (0)