9
0
mirror of https://github.com/Auxilor/EcoBits.git synced 2025-12-19 15:09:19 +00:00
This commit is contained in:
Auxilor
2023-05-02 15:42:47 +01:00
parent 983f974616
commit 55af7fac86

View File

@@ -71,14 +71,11 @@ class Currency(
}.orElse(null)
}
fun registerCommands() {
this.commands.forEach {
println("Registered ${it.name}")
it.register()
}
private fun registerCommands() {
this.commands.forEach { it.register() }
}
fun unregisterCommands() {
private fun unregisterCommands() {
this.commands.forEach { it.unregister() }
}