Interface ChatInputSuggestorMixin


public interface ChatInputSuggestorMixin
This mixin interface is used to get the pendingSuggestions field of ChatInputSuggestor. ChatInputSuggestor
getPendingSuggestions()

Usage:

ChatInputSuggestor suggestor = ...;
CompletableFuture<Suggestions> pendingSuggestions = ((ChatInputSuggestorMixin) suggestor).getPendingSuggestions();
  • Method Summary

    Modifier and Type
    Method
    Description
    CompletableFuture<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