aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Zajc <marko@zajc.eu.org>2024-07-15 16:53:09 +0200
committerMarko Zajc <marko@zajc.eu.org>2024-07-15 16:53:09 +0200
commit3c5fc895e9aad2d0787d6f2d8dc84f6fbe13027f (patch)
treed9bf547f50f3528edd0986b8e332e75fad1eca5a
parente1437cff9e33a466265f025cd8d7270647c1775b (diff)
[module-libot] Change *about formatjda-v5
-rw-r--r--module-libot/src/main/java/libot/commands/AboutCommand.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/module-libot/src/main/java/libot/commands/AboutCommand.java b/module-libot/src/main/java/libot/commands/AboutCommand.java
index 8e57a5d..6688ce8 100644
--- a/module-libot/src/main/java/libot/commands/AboutCommand.java
+++ b/module-libot/src/main/java/libot/commands/AboutCommand.java
@@ -37,7 +37,7 @@ public class AboutCommand extends Command {
37 b.setDescriptionf(FORMAT_DESCRIPTION, LINKS); 37 b.setDescriptionf(FORMAT_DESCRIPTION, LINKS);
38 b.setThumbnail(c.getSelfUser().getAvatarUrl()); 38 b.setThumbnail(c.getSelfUser().getAvatarUrl());
39 appendStatistics(c, b); 39 appendStatistics(c, b);
40 b.setFooterf("v%s | Last reboot: ", VERSION); 40 b.setFooterf("v%s | Last reboot ", VERSION);
41 b.setTimestamp(ofEpochMilli(getRuntimeMXBean().getStartTime())); 41 b.setTimestamp(ofEpochMilli(getRuntimeMXBean().getStartTime()));
42 c.reply(b); 42 c.reply(b);
43 } 43 }