We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a0e7d6 commit 5c38b20Copy full SHA for 5c38b20
1 file changed
src/main/kotlin/stageguard/sctimetable/service/BotEventRouteService.kt
@@ -187,7 +187,7 @@ object BotEventRouteService : AbstractPluginManagedService() {
187
plainText.startsWith("修改提前提醒时间") -> {
188
verbose("capture 修改提前提醒时间")
189
interactiveConversation {
190
- send("你想在上课前多长时间收到课程提醒(单位:分钟)?\n当前为提前 ${PluginData.advancedTipOffset[sender.id] ?: PluginConfig.advancedTipTime} 分钟提醒。")
+ send("你想在上课前多长时间收到课程提醒(单位:分钟)?\n请输入一个数字代表你想要修改的时间。\n当前为提前 ${PluginData.advancedTipOffset[sender.id] ?: PluginConfig.advancedTipTime} 分钟提醒。")
191
receive(tryLimit = 3, timeoutLimit = 30000L) { it.toInt() > 0 }
192
}.finish(failed = {
193
when(it) {
0 commit comments