From 1511280da1966869d5b80628ee85aca9f0e7895d Mon Sep 17 00:00:00 2001 From: ChomeNS <95471003+ChomeNS@users.noreply.github.com> Date: Wed, 27 Sep 2023 08:57:15 +0700 Subject: [PATCH] fix music pause color --- .../chipmunk/chayapak/chomens_bot/commands/MusicCommand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/land/chipmunk/chayapak/chomens_bot/commands/MusicCommand.java b/src/main/java/land/chipmunk/chayapak/chomens_bot/commands/MusicCommand.java index a17bc61c..a04cc731 100644 --- a/src/main/java/land/chipmunk/chayapak/chomens_bot/commands/MusicCommand.java +++ b/src/main/java/land/chipmunk/chayapak/chomens_bot/commands/MusicCommand.java @@ -421,10 +421,10 @@ public class MusicCommand extends Command { if (currentSong.paused) { currentSong.play(); - return Component.text("Resumed the current song"); + return Component.text("Resumed the current song").color(ColorUtilities.getColorByString(bot.config.colorPalette.defaultColor)); } else { currentSong.pause(); - return Component.text("Paused the current song"); + return Component.text("Paused the current song").color(ColorUtilities.getColorByString(bot.config.colorPalette.defaultColor)); } }