mirror of
https://github.com/velour/catbase.git
synced 2025-04-03 19:51:42 +00:00
bot: make plugins run async
This commit is contained in:
parent
f30955cdef
commit
a602917008
@ -29,12 +29,14 @@ func (b *bot) MsgReceived(msg msg.Message) {
|
|||||||
goto RET
|
goto RET
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, name := range b.pluginOrdering {
|
go (func() {
|
||||||
p := b.plugins[name]
|
for _, name := range b.pluginOrdering {
|
||||||
if p.Message(msg) {
|
p := b.plugins[name]
|
||||||
break
|
if p.Message(msg) {
|
||||||
|
break
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
})()
|
||||||
|
|
||||||
RET:
|
RET:
|
||||||
b.logIn <- msg
|
b.logIn <- msg
|
||||||
|
Loading…
x
Reference in New Issue
Block a user