From 588aeee151b849eaac3bde71d0b431c0bd13c1b7 Mon Sep 17 00:00:00 2001 From: Jaganath Date: Sat, 28 Feb 2026 10:58:32 +0530 Subject: [PATCH 1/2] Improve server status message --- install | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/install b/install index 2262d16..d8cf8fb 100755 --- a/install +++ b/install @@ -1219,9 +1219,13 @@ stop) status) user=$(whoami); if [ $user != "'${user}'" ]; then echo "Cannot run as ${user} - expecting '${user}'"; exit; fi if screen -ls | grep -q Pinecraft; then - echo 1 + echo "Minecraft server is Online! Join through: " + hostname -I | awk '{print $1}' + echo "To stop server use '~/minecraft/stop'" + echo "To reboot server use 'sudo ~/minecraft/reboot'" else - echo 0 + echo "Minecraft server is Offline." + echo "To start server use '~/minecraft/server'" fi ;; From 694361fb1200137dbf39bdcd357aaf0b72007753 Mon Sep 17 00:00:00 2001 From: Jaganath Date: Sat, 28 Feb 2026 11:03:35 +0530 Subject: [PATCH 2/2] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1f083fc..e05b692 100644 --- a/README.md +++ b/README.md @@ -278,7 +278,7 @@ To reboot **do not** use traditional Linux commands. You must use: ### Important Note: First Boot -On first boot, your Minecraft Server will generate the world. This can take around 10 minutes, so hang tight while this happens, and then connect to your Minecraft Server's IP address from Minecraft Java as soon as it is ready. You can tail the log file if you'd like to see the progress, or sipmly retry connecting via Minecraft Java after a few minutes. +On first boot, your Minecraft Server will generate the world. This can take around 10 minutes, so hang tight while this happens, and then connect to your Minecraft Server's IP address from Minecraft Java as soon as it is ready. You can tail the log file if you'd like to see the progress, or simply retry connecting via Minecraft Java after a few minutes. Post-Install