From e6d646dd416df81ff44a16be3dc856027f793956 Mon Sep 17 00:00:00 2001 From: Tobias Kunicke Date: Mon, 6 Mar 2017 14:58:09 +0100 Subject: [PATCH] Fixed status output --- .../sheepit/client/standalone/text/CLIInputActionHandler.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/sheepit/client/standalone/text/CLIInputActionHandler.java b/src/com/sheepit/client/standalone/text/CLIInputActionHandler.java index fd95aad..f5d4d84 100644 --- a/src/com/sheepit/client/standalone/text/CLIInputActionHandler.java +++ b/src/com/sheepit/client/standalone/text/CLIInputActionHandler.java @@ -95,10 +95,10 @@ public class CLIInputActionHandler implements CLIInputListener { System.out.println("Status: paused"); } else if (client.isRunning()) { - System.out.println("Status: will exit after the current frame"); + System.out.println("Status: running"); } else { - System.out.println("Status: running"); + System.out.println("Status: will exit after the current frame"); } } }