From a6e57f89aa281649c4c5a5895e6390754ef5297a Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Thu, 18 Oct 2018 21:16:20 -0400 Subject: [PATCH] Fix #117 --- .../java/com/velocitypowered/proxy/console/VelocityConsole.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/src/main/java/com/velocitypowered/proxy/console/VelocityConsole.java b/proxy/src/main/java/com/velocitypowered/proxy/console/VelocityConsole.java index fa1ac0bee..95af6d2a1 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/console/VelocityConsole.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/console/VelocityConsole.java @@ -55,7 +55,7 @@ public final class VelocityConsole extends SimpleTerminalConsole implements Comm Optional> o = this.server.getCommandManager().offerSuggestions(this, parsedLine.line()); o.ifPresent(offers -> { for (String offer : offers) { - list.add(new Candidate(offer)); + list.add(new Candidate(offer.substring(1))); } }); } catch (Exception e) {