We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TranslatableComponent#visitors
This is not a list of visitors, but rather a List<StringVisitable> representing the different "parts" of the text component.
List<StringVisitable>
Say the component's text after translation is Hello, %s! and it is given an argument world with which to format. This "visitors" list would be:
Hello, %s!
world
visitors
Hello,
!
Visitable != visitor.
!=
The text was updated successfully, but these errors were encountered:
TranslatableComponent.visitors
No branches or pull requests
This is not a list of visitors, but rather a
List<StringVisitable>
representing the different "parts" of the text component.Say the component's text after translation is
Hello, %s!
and it is given an argumentworld
with which to format. This "visitors
" list would be:Hello,
!
Visitable
!=
visitor.The text was updated successfully, but these errors were encountered: