cleanup and finish the current scoresaber command args

This commit is contained in:
Lee
2024-06-24 14:58:57 +01:00
parent 82e241f6ac
commit ac3529ed88
6 changed files with 68 additions and 27 deletions

View File

@ -19,7 +19,7 @@ public class EmbedUtils {
return new EmbedBuilder()
.setDescription(description)
.setTimestamp(LocalDateTime.now())
.setColor(0x2F3136);
.setColor(Colors.DEFAULT);
}
/**
@ -32,7 +32,7 @@ public class EmbedUtils {
return new EmbedBuilder()
.setDescription(description)
.setTimestamp(LocalDateTime.now())
.setColor(0xFF0000);
.setColor(Colors.ERROR);
}
/**
@ -45,6 +45,6 @@ public class EmbedUtils {
return new EmbedBuilder()
.setDescription(description)
.setTimestamp(LocalDateTime.now())
.setColor(0x00FF00);
.setColor(Colors.SUCCESS);
}
}