fix music pause color
This commit is contained in:
parent
62d47f1b09
commit
1511280da1
1 changed files with 2 additions and 2 deletions
|
@ -421,10 +421,10 @@ public class MusicCommand extends Command {
|
||||||
|
|
||||||
if (currentSong.paused) {
|
if (currentSong.paused) {
|
||||||
currentSong.play();
|
currentSong.play();
|
||||||
return Component.text("Resumed the current song");
|
return Component.text("Resumed the current song").color(ColorUtilities.getColorByString(bot.config.colorPalette.defaultColor));
|
||||||
} else {
|
} else {
|
||||||
currentSong.pause();
|
currentSong.pause();
|
||||||
return Component.text("Paused the current song");
|
return Component.text("Paused the current song").color(ColorUtilities.getColorByString(bot.config.colorPalette.defaultColor));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue