bot: make plugins run async

This commit is contained in:
cws 2017-06-28 09:18:41 -04:00
parent f30955cdef
commit a602917008
1 changed files with 7 additions and 5 deletions

View File

@ -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