add version number to the embeds
Some checks failed
Deploy to Dokku / docker (ubuntu-latest) (push) Failing after 1m4s
Some checks failed
Deploy to Dokku / docker (ubuntu-latest) (push) Failing after 1m4s
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
package cc.fascinated.bat.common;
|
||||
|
||||
import cc.fascinated.bat.BatApplication;
|
||||
import cc.fascinated.bat.config.Config;
|
||||
import lombok.experimental.UtilityClass;
|
||||
import net.dv8tion.jda.api.EmbedBuilder;
|
||||
@ -20,6 +21,7 @@ public class EmbedUtils {
|
||||
public static EmbedBuilder genericEmbed() {
|
||||
return new EmbedBuilder()
|
||||
.setTimestamp(LocalDateTime.now())
|
||||
.setFooter(BatApplication.BUILD_DATA.getVersion())
|
||||
.setColor(Colors.DEFAULT);
|
||||
}
|
||||
|
||||
@ -31,6 +33,7 @@ public class EmbedUtils {
|
||||
public static EmbedBuilder errorEmbed() {
|
||||
return new EmbedBuilder()
|
||||
.setTimestamp(LocalDateTime.now())
|
||||
.setFooter(BatApplication.BUILD_DATA.getVersion())
|
||||
.setColor(Colors.ERROR);
|
||||
}
|
||||
|
||||
@ -42,6 +45,7 @@ public class EmbedUtils {
|
||||
public static EmbedBuilder successEmbed() {
|
||||
return new EmbedBuilder()
|
||||
.setTimestamp(LocalDateTime.now())
|
||||
.setFooter(BatApplication.BUILD_DATA.getVersion())
|
||||
.setColor(Colors.SUCCESS);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user