more embed cleanup
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 46s

This commit is contained in:
Lee
2024-06-25 13:59:02 +01:00
parent 0d1eb3089a
commit 519cb72c14
17 changed files with 45 additions and 59 deletions

View File

@ -16,7 +16,7 @@ public class EmbedUtils {
*
* @return the embed builder
*/
public static EmbedBuilder buildGenericEmbed() {
public static EmbedBuilder genericEmbed() {
return new EmbedBuilder()
.setTimestamp(LocalDateTime.now())
.setColor(Colors.DEFAULT);
@ -27,7 +27,7 @@ public class EmbedUtils {
*
* @return the embed builder
*/
public static EmbedBuilder buildErrorEmbed() {
public static EmbedBuilder errorEmbed() {
return new EmbedBuilder()
.setTimestamp(LocalDateTime.now())
.setColor(Colors.ERROR);
@ -38,7 +38,7 @@ public class EmbedUtils {
*
* @return the embed builder
*/
public static EmbedBuilder buildSuccessEmbed() {
public static EmbedBuilder successEmbed() {
return new EmbedBuilder()
.setTimestamp(LocalDateTime.now())
.setColor(Colors.SUCCESS);