From d0c7f7ff073a112b7bc5d8651741654bf8ba1678 Mon Sep 17 00:00:00 2001 From: Jannik Reimers Date: Wed, 6 Nov 2024 20:44:05 +0100 Subject: [PATCH] announcement message hotfix --- src/main/kotlin/dev/jansel/feixiao/App.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/dev/jansel/feixiao/App.kt b/src/main/kotlin/dev/jansel/feixiao/App.kt index 40ba1d5..0c932d6 100644 --- a/src/main/kotlin/dev/jansel/feixiao/App.kt +++ b/src/main/kotlin/dev/jansel/feixiao/App.kt @@ -43,7 +43,7 @@ suspend fun main() { val channel = bot.kordRef.getChannelOf(streamer!!.servers.first().channelId) val role = streamer.servers.first().roleId if (role != null) { - channel?.createMessage("<@&$role> ${it.channel.name} went live streaming ${it.stream.gameName}: ${it.stream.title}") + channel?.createMessage("<@&$role> https://twitch.tv/${it.channel.name} went live streaming ${it.stream.gameName}: ${it.stream.title}") } else { channel?.createMessage("${it.channel.name} went live: ${it.stream.title}") }