This commit is contained in:
Him188 2019-12-05 20:14:53 +08:00
parent 3d21dbd0cb
commit 3ecae98810

View File

@ -70,17 +70,17 @@ suspend fun main() {
startsWith("mt2months") {
val at: At by message
at.target.member().mute(1.months)
at.member().mute(1.months)
}
startsWith("mute") {
val at: At by message
at.target.member().mute(30.seconds)
at.member().mute(30.seconds)
}
startsWith("unmute") {
val at: At by message
at.target.member().unmute()
at.member().unmute()
}
}