Merge remote-tracking branch 'origin/master'

This commit is contained in:
Him188 2019-10-10 11:30:28 +08:00
commit ff6403cd87

View File

@ -126,19 +126,11 @@ internal class TIMBotNetworkHandler(private val bot: Bot) : BotNetworkHandler {
if (ServerPacketReceivedEvent(bot, packet).broadcast().cancelled) { if (ServerPacketReceivedEvent(bot, packet).broadcast().cancelled) {
return return
} }
withContext(CoroutineExceptionHandler { _, e -> e.printStackTrace() }) { loginHandler.onPacketReceived(packet)
launch(this.coroutineContext) { packetHandlers.forEach {
loginHandler.onPacketReceived(packet) it.instance.onPacketReceived(packet)
} }
packetHandlers.forEach {
launch(this.coroutineContext) {
it.instance.onPacketReceived(packet)
}
}
}//awaits all coroutines launched in this block
} }
private var socket: DatagramSocket? = null private var socket: DatagramSocket? = null