0.4.0 SNAPSHOT

This commit is contained in:
LOOHP
2021-02-19 23:33:21 +08:00
parent a0f45a5b17
commit 8d2b7ea0cb
32 changed files with 2345 additions and 140 deletions
+1 -1
View File
@@ -152,7 +152,7 @@ public class Console implements CommandSender {
return;
}
while (true) {
String command = tabReader.readLine(PROMPT);
String command = tabReader.readLine(PROMPT).trim();
if (command.length() > 0) {
String[] input = CustomStringUtils.splitStringToArgs(command);
new Thread(() -> Limbo.getInstance().dispatchCommand(this, input)).start();