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 ## Special Thanks to
- HopeBaron for helping me a whole lot - HopeBaron for helping me a lot
## Known issues ## Known issues
- The Repeat feature does not function - 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 - Not all comments are listed below
## Commands ## Commands

View file

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

View file

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