add version number to the embeds
Some checks failed
Deploy to Dokku / docker (ubuntu-latest) (push) Failing after 1m4s

This commit is contained in:
Lee
2024-07-07 00:28:58 +01:00
parent b5ac5d6a9b
commit 585d3e0793
5 changed files with 99 additions and 10 deletions

View File

@ -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);
}