Core: Add back leaderboard command.

This commit is contained in:
Kenneth Endfinger 2021-12-24 02:00:16 -05:00
parent fae116a2a5
commit e00ef21db1
No known key found for this signature in database
GPG Key ID: C4E68E5647420E10

View File

@ -15,6 +15,7 @@ class StatsFeature : Feature() {
override fun enable() { override fun enable() {
chatLogStore = persistence.value.store("chat-logs") chatLogStore = persistence.value.store("chat-logs")
registerCommandExecutor("leaderboard", LeaderboardCommand())
registerCommandExecutor("pstore", PersistentStoreCommand(this)) registerCommandExecutor("pstore", PersistentStoreCommand(this))
} }