From a56a5c285cb7949033152c94743f0af6f92e1c12 Mon Sep 17 00:00:00 2001 From: vxclutch Date: Wed, 24 Jun 2026 14:05:44 -0400 Subject: [PATCH] Add newlines --- server/status.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/status.go b/server/status.go index 33edc07..2f57a1f 100644 --- a/server/status.go +++ b/server/status.go @@ -20,7 +20,7 @@ func Status(cmd *cobra.Command, args []string) { start_cmd.Stderr = &errb if err := start_cmd.Run(); err != nil { - fmt.Print("offline") + fmt.Println("offline") return } @@ -31,5 +31,5 @@ func Status(cmd *cobra.Command, args []string) { panic(err) } - fmt.Printf("%d/%d players", active, max) + fmt.Printf("%d/%d players\n", active, max) }