fix: removed nonexistent versions from info command

chore: added an issue to known issues

Signed-off-by: limited_dev <loginakkisativ@gmail.com>
This commit is contained in:
limited_dev 2023-05-09 09:33:37 +02:00
parent dfbd3fbe39
commit 2e35bbd0c7
3 changed files with 6 additions and 5 deletions

View file

@ -17,11 +17,12 @@ A Discord music bot, written in Kotlin using the kord library.
## Special Thanks to
- HopeBaron for helping me a whole lot
- HopeBaron for helping me a lot
## Known issues
- The Repeat feature does not function
- The Queue does not show the current song, if there is no song next up
- Not all comments are listed below
## Commands

View file

@ -75,6 +75,7 @@ class GuildTrackScheduler(val pl: Player) {
private suspend fun onTrackEnd(e: TrackEndEvent) {
if (e.reason.mayStartNext) {
if (repeating) {
Logger.out("Repeating track....")
this.pl.playTrack(e.getTrack().copy())
return
}

View file

@ -37,10 +37,9 @@ class InfoExtension : Extension() {
"Botendo ***v." + BuildConstants.version + "***\n" +
"Kord-Extensions ***v." + BuildConstants.kordVersion + "***\n" +
"lavalink.kt ***v." + BuildConstants.lavaVersion + "***\n" +
"Coroutines ***v." + BuildConstants.coroutinesVersion + "***\n" +
"Ktor ***v." + BuildConstants.ktorVersion + "***\n" +
"Exposed ***v." + BuildConstants.exposedVersion + "***\n" +
"PostgreSQL ***v." + BuildConstants.postgresVersion + "***"
"Coroutines ***v." + BuildConstants.coroutinesVersion + "***\n\n\n" +
"***Bot made by moonleay#7441***\n" +
"(c) 2023, licensed under GPL-3.0"
)
}
}