diff --git a/foundation-core/src/main/kotlin/cloud/kubelet/foundation/core/features/stats/StatsFeature.kt b/foundation-core/src/main/kotlin/cloud/kubelet/foundation/core/features/stats/StatsFeature.kt index 45be4d6..4a790f7 100644 --- a/foundation-core/src/main/kotlin/cloud/kubelet/foundation/core/features/stats/StatsFeature.kt +++ b/foundation-core/src/main/kotlin/cloud/kubelet/foundation/core/features/stats/StatsFeature.kt @@ -15,7 +15,7 @@ class StatsFeature : Feature() { override fun enable() { chatLogStore = persistence.value.store("chat-logs") - registerCommandExecutor("leaderboard", LeaderboardCommand()) + registerCommandExecutor(listOf("leaderboard", "lb"), LeaderboardCommand()) registerCommandExecutor("pstore", PersistentStoreCommand(this)) }