-
Notifications
You must be signed in to change notification settings - Fork 0
자동 완성 등록하기
milkyway0308 edited this page Nov 24, 2020
·
1 revision
CommandAnnotation의 자동 완성은 간단합니다.
어노테이션을 추가하고, 리스트를 편집하거나, 리스트를 반환하거나, 배열을 반환하세요!
@MinecraftCommand("/test")
@AutoComplete("Test")
public static void command(Player p) {
p.sendMessage("Test!");
}
@AutoCompleteProvider("Test")
public static void editCompletion(List<String> str) {
str.clear();
str.add("Test Completion");
}
@AutoCompleteProvider("Test")
public static List<String> editCompletion() {
List<String> str = new ArrayList<>();
str.add("Test Completion");
return str;
}
@AutoCompleteProvider("Test")
public static String[] editCompletion() {
return new String[] {
"Test", "Test2"
};
}