Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Makes it possible for server owners to easily add leaderboards for any registered stat, so if you ever wanted a leaderboard for most iron shovels broken, distance traveled by minecart, amount of fish caught etc. you can now :) (this also includes stats registered by other mods)
Moves all of the existing stat leaderboards (any leaderboard that only needs a minecraft stat to function) to the new leaderboards.json file in the
/serverutilities/server
folder.It's super easy to add new ones as you only really need to copy one of the existing ones and switch the stat id to the one you want, the name of the leaderboard as well as the ordering of the entries in the leaderboard can also be changed in the file if desired.
A full list of registered stat id's along with as good a description as we can get can be dumped to txt file using /dump_stats.
Also stops piggybacking of our own event to register the leaderboards. The event continues to exist for other mods to use.
Closes #111