mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Fix format error
This commit is contained in:
parent
5181395bbd
commit
531f3408a0
1 changed files with 1 additions and 1 deletions
|
|
@ -188,7 +188,7 @@ namespace MinecraftClient.Commands
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
StringBuilder response = new();
|
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())
|
foreach ((int invId, Container inv) in handler.GetInventories())
|
||||||
response.AppendLine(String.Format(" #{0}: {1}§8", invId, inv.Title));
|
response.AppendLine(String.Format(" #{0}: {1}§8", invId, inv.Title));
|
||||||
response.Append(CmdUsage);
|
response.Append(CmdUsage);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue