Package github.jaffe2718.mccs.mixin
Interface ChatInputSuggestorMixin
public interface ChatInputSuggestorMixin
This mixin interface is used to get the pendingSuggestions field of ChatInputSuggestor.
Usage:
ChatInputSuggestor
getPendingSuggestions()
Usage:
ChatInputSuggestor suggestor = ...;
CompletableFuture<Suggestions> pendingSuggestions = ((ChatInputSuggestorMixin) suggestor).getPendingSuggestions();
-
Method Summary
Modifier and TypeMethodDescriptionCompletableFuture<com.mojang.brigadier.suggestion.Suggestions>
Get the pendingSuggestions field of ChatInputSuggestor
-
Method Details
-
getPendingSuggestions
CompletableFuture<com.mojang.brigadier.suggestion.Suggestions> getPendingSuggestions()Get the pendingSuggestions field of ChatInputSuggestor- Returns:
- the pendingSuggestions field of ChatInputSuggestor
-