add auto roles and clean up how embeds are made
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 45s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 45s
This commit is contained in:
@ -14,12 +14,10 @@ public class EmbedUtils {
|
||||
/**
|
||||
* Builds a generic embed
|
||||
*
|
||||
* @param description the description of the embed
|
||||
* @return the embed builder
|
||||
*/
|
||||
public static EmbedBuilder buildGenericEmbed(String description) {
|
||||
public static EmbedBuilder buildGenericEmbed() {
|
||||
return new EmbedBuilder()
|
||||
.setDescription(description)
|
||||
.setTimestamp(LocalDateTime.now())
|
||||
.setColor(Colors.DEFAULT);
|
||||
}
|
||||
@ -27,12 +25,10 @@ public class EmbedUtils {
|
||||
/**
|
||||
* Builds an error embed
|
||||
*
|
||||
* @param description the description of the embed
|
||||
* @return the embed builder
|
||||
*/
|
||||
public static EmbedBuilder buildErrorEmbed(String description) {
|
||||
public static EmbedBuilder buildErrorEmbed() {
|
||||
return new EmbedBuilder()
|
||||
.setDescription(description)
|
||||
.setTimestamp(LocalDateTime.now())
|
||||
.setColor(Colors.ERROR);
|
||||
}
|
||||
@ -40,12 +36,10 @@ public class EmbedUtils {
|
||||
/**
|
||||
* Builds a success embed
|
||||
*
|
||||
* @param description the description of the embed
|
||||
* @return the embed builder
|
||||
*/
|
||||
public static EmbedBuilder buildSuccessEmbed(String description) {
|
||||
public static EmbedBuilder buildSuccessEmbed() {
|
||||
return new EmbedBuilder()
|
||||
.setDescription(description)
|
||||
.setTimestamp(LocalDateTime.now())
|
||||
.setColor(Colors.SUCCESS);
|
||||
}
|
||||
|
Reference in New Issue
Block a user