From 4cca46365fc4db1595582ba780b82f67d900f09d Mon Sep 17 00:00:00 2001 From: LordMZTE Date: Wed, 29 Jul 2020 14:19:56 +0200 Subject: [PATCH] add >>> to shell --- src/main/kotlin/ley/anvil/modpacktools/commands/Shell.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/ley/anvil/modpacktools/commands/Shell.kt b/src/main/kotlin/ley/anvil/modpacktools/commands/Shell.kt index b6bddcb..f4dc968 100644 --- a/src/main/kotlin/ley/anvil/modpacktools/commands/Shell.kt +++ b/src/main/kotlin/ley/anvil/modpacktools/commands/Shell.kt @@ -18,6 +18,7 @@ object Shell : ICommand { println("enter \'exit\' to exit the shell\n") while(true) { + print(">>>") val arg = readLine()!!.split(' ') if(arg.getOrNull(0) == "exit") break