From 97bf9cf32f76dbacc703471b6c7955d7e61df361 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Tue, 17 Dec 2024 19:39:11 +0400 Subject: [PATCH] In run_client() print -Xmx as well. --- cmd/mccl/commands/run_command.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/mccl/commands/run_command.go b/cmd/mccl/commands/run_command.go index 4884851..37a60e8 100755 --- a/cmd/mccl/commands/run_command.go +++ b/cmd/mccl/commands/run_command.go @@ -155,8 +155,8 @@ func (rc *RunCommand) run_client() error { } }() - fmt.Printf("Minecraft version %s is started with username %s and player's UUID %s.\n", - manifst.Id, rc.Username, rc.AuthUuid) + fmt.Printf("Minecraft version %s is started with %s, username %s and player's UUID %s.\n", + manifst.Id, rc.JavaXmx, rc.Username, rc.AuthUuid) if err := cmd.Run(); err != nil && (err.Error() != "exec: already started") { return err