From 789d58f99aef689958c20c4ff10c1833e5c19ee0 Mon Sep 17 00:00:00 2001 From: Jannik Reimers Date: Mon, 9 Dec 2024 17:56:03 +0100 Subject: [PATCH] rewrite the response better when an attempt is made to ping everyone as a role ping --- .../kotlin/dev/jansel/feixiao/extensions/StreamerCommand.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/dev/jansel/feixiao/extensions/StreamerCommand.kt b/src/main/kotlin/dev/jansel/feixiao/extensions/StreamerCommand.kt index 495d306..4f014d1 100644 --- a/src/main/kotlin/dev/jansel/feixiao/extensions/StreamerCommand.kt +++ b/src/main/kotlin/dev/jansel/feixiao/extensions/StreamerCommand.kt @@ -40,7 +40,7 @@ class StreamerCommand : Extension() { } if (arguments.role?.id == guild!!.id) { respond { - content = "This action would implement a everyone ping. to properly use it please make a ping without role and insert the everyone ping manually." + content = "This action would implement a everyone ping, which is due to how role pings are implemented right now not possible. If you want to make an everyone ping regardless, make a role-less ping and write the everyone ping manually." } return@action } @@ -95,7 +95,7 @@ class StreamerCommand : Extension() { val temp = servers.find { it.guildId == guildId } if (roleId?.id== guildId) { respond { - content = "This action would implement a everyone ping. to properly use it please make a ping without role and insert the everyone ping manually." + content = "This action would implement a everyone ping, which is due to how role pings are implemented right now not possible. If you want to make an everyone ping regardless, make a role-less ping and write the everyone ping manually." } return@action }