mirror of
https://github.com/InsanusMokrassar/PlaguBot.git
synced 2024-12-22 22:17:12 +00:00
setupBotPlugin now works synchronously
This commit is contained in:
parent
328a8b215c
commit
3592a5907c
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
## 3.4.1
|
## 3.4.1
|
||||||
|
|
||||||
|
* `setupBotPlugin` now works synchronously
|
||||||
|
|
||||||
## 3.4.0
|
## 3.4.0
|
||||||
|
|
||||||
* `Versions`:
|
* `Versions`:
|
||||||
|
@ -63,8 +63,7 @@ data class PlaguBot(
|
|||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun BehaviourContextWithFSM<State>.setupBotPlugin(koin: Koin) {
|
override suspend fun BehaviourContextWithFSM<State>.setupBotPlugin(koin: Koin) {
|
||||||
config.plugins.map { plugin ->
|
config.plugins.forEach { plugin ->
|
||||||
launch {
|
|
||||||
runCatchingSafely {
|
runCatchingSafely {
|
||||||
logger.i("Start loading of $plugin")
|
logger.i("Start loading of $plugin")
|
||||||
with(plugin) {
|
with(plugin) {
|
||||||
@ -76,7 +75,6 @@ data class PlaguBot(
|
|||||||
logger.i("Complete loading of $plugin")
|
logger.i("Complete loading of $plugin")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}.joinAll()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user