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
Make this nothub/SafeTPA#50 Sync with chat ignores
Make it so it prompts "Do you also want to ignore TPA's from <user> "after executing /ignore with chat links stating yes or no
<user>
The text was updated successfully, but these errors were encountered:
Ignores will be stored as json file per player. I will make the storage location configurable so it is easy to read them from other plugins.
To read files with GSON:
import com.google.gson.reflect.TypeToken; ... var reader = Files.newBufferedReader(filepath) var type = TypeToken.getParameterized(Set.class, UUID.class).getType() Set<UUID> ignores = gson.fromJson(reader, type)
Sorry, something went wrong.
No branches or pull requests
Make this nothub/SafeTPA#50
Sync with chat ignores
Make it so it prompts "Do you also want to ignore TPA's from
<user>
"after executing /ignore with chat links stating yes or noThe text was updated successfully, but these errors were encountered: