Implements the remove condition command and its tab completer
This commit is contained in:
@ -8,6 +8,7 @@ import org.bukkit.command.TabCompleter;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
@ -41,7 +42,7 @@ public class AddConditionTabCompleter implements TabCompleter {
|
||||
} else if (argumentSize < 6) {
|
||||
return optionStates;
|
||||
}
|
||||
return null;
|
||||
return new ArrayList<>();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user