more embed cleanup
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 46s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 46s
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user