geforkt von Mirrors/FastAsyncWorldEdit
Fix other minor suggestion bugs
Dieser Commit ist enthalten in:
Ursprung
76b608f90b
Commit
50cea37439
@ -51,7 +51,7 @@ public final class SuggestionHelper {
|
||||
if (tag.isEmpty() || tag.equals("#")) {
|
||||
return Stream.of("##", "##*");
|
||||
}
|
||||
if (tag.startsWith("#")) {
|
||||
if (tag.startsWith("##")) {
|
||||
if (tag.equals("##")) {
|
||||
return Stream.concat(Stream.of("##*"), getNamespacedRegistrySuggestions(BlockCategory.REGISTRY, tag.substring(2)).map(s -> "##" + s));
|
||||
} else if (tag.equals("##*") && allowRandom) {
|
||||
|
@ -111,7 +111,8 @@ public final class CommandWrapper {
|
||||
// Ensure there is a space!
|
||||
if (suggestion.getStart() == suggestion.getEnd()
|
||||
&& suggestion.getEnd() == builder.getInput().length()
|
||||
&& !builder.getInput().endsWith(" ")) {
|
||||
&& !builder.getInput().endsWith(" ")
|
||||
&& !builder.getInput().endsWith("\"")) {
|
||||
suggestionText = " " + suggestionText;
|
||||
}
|
||||
result.add(new Suggestion(
|
||||
|
@ -103,7 +103,8 @@ public final class CommandWrapper {
|
||||
// Ensure there is a space!
|
||||
if (suggestion.getStart() == suggestion.getEnd()
|
||||
&& suggestion.getEnd() == builder.getInput().length()
|
||||
&& !builder.getInput().endsWith(" ")) {
|
||||
&& !builder.getInput().endsWith(" ")
|
||||
&& !builder.getInput().endsWith("\"")) {
|
||||
suggestionText = " " + suggestionText;
|
||||
}
|
||||
result.add(new Suggestion(
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren