remove it because i am lazy to fix it :(

This commit is contained in:
Chayapak 2023-07-14 16:49:39 +07:00
parent 86390f3801
commit 2d123256e2

View file

@ -7,7 +7,6 @@ import net.kyori.adventure.text.JoinConfiguration;
import net.kyori.adventure.text.TextComponent;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class CommandSuggestionPlugin extends ChatPlugin.Listener {
@ -38,14 +37,6 @@ public class CommandSuggestionPlugin extends ChatPlugin.Listener {
output.add(
Component
.text(command.name)
.append(
Component.join(
JoinConfiguration.noSeparators(),
Arrays.stream(command.aliases)
.map(Component::text)
.toList()
)
)
.append(Component.text(command.trustLevel.name()))
);
}