Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-19 09:20:08 +01:00
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("#")) {
|
if (tag.isEmpty() || tag.equals("#")) {
|
||||||
return Stream.of("##", "##*");
|
return Stream.of("##", "##*");
|
||||||
}
|
}
|
||||||
if (tag.startsWith("#")) {
|
if (tag.startsWith("##")) {
|
||||||
if (tag.equals("##")) {
|
if (tag.equals("##")) {
|
||||||
return Stream.concat(Stream.of("##*"), getNamespacedRegistrySuggestions(BlockCategory.REGISTRY, tag.substring(2)).map(s -> "##" + s));
|
return Stream.concat(Stream.of("##*"), getNamespacedRegistrySuggestions(BlockCategory.REGISTRY, tag.substring(2)).map(s -> "##" + s));
|
||||||
} else if (tag.equals("##*") && allowRandom) {
|
} else if (tag.equals("##*") && allowRandom) {
|
||||||
|
@ -111,7 +111,8 @@ public final class CommandWrapper {
|
|||||||
// Ensure there is a space!
|
// Ensure there is a space!
|
||||||
if (suggestion.getStart() == suggestion.getEnd()
|
if (suggestion.getStart() == suggestion.getEnd()
|
||||||
&& suggestion.getEnd() == builder.getInput().length()
|
&& suggestion.getEnd() == builder.getInput().length()
|
||||||
&& !builder.getInput().endsWith(" ")) {
|
&& !builder.getInput().endsWith(" ")
|
||||||
|
&& !builder.getInput().endsWith("\"")) {
|
||||||
suggestionText = " " + suggestionText;
|
suggestionText = " " + suggestionText;
|
||||||
}
|
}
|
||||||
result.add(new Suggestion(
|
result.add(new Suggestion(
|
||||||
|
@ -103,7 +103,8 @@ public final class CommandWrapper {
|
|||||||
// Ensure there is a space!
|
// Ensure there is a space!
|
||||||
if (suggestion.getStart() == suggestion.getEnd()
|
if (suggestion.getStart() == suggestion.getEnd()
|
||||||
&& suggestion.getEnd() == builder.getInput().length()
|
&& suggestion.getEnd() == builder.getInput().length()
|
||||||
&& !builder.getInput().endsWith(" ")) {
|
&& !builder.getInput().endsWith(" ")
|
||||||
|
&& !builder.getInput().endsWith("\"")) {
|
||||||
suggestionText = " " + suggestionText;
|
suggestionText = " " + suggestionText;
|
||||||
}
|
}
|
||||||
result.add(new Suggestion(
|
result.add(new Suggestion(
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren