From 36fa50a397d1ec70031e84a53213be987aae9022 Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Tue, 13 May 2025 22:33:22 +0200 Subject: [PATCH] feat(command): better top display for top full time --- commands/top.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/top.go b/commands/top.go index 0423bab..53ccef9 100644 --- a/commands/top.go +++ b/commands/top.go @@ -42,7 +42,7 @@ func Top(s *discordgo.Session, i *discordgo.InteractionCreate) { cfg := config.GetGuildConfig(i.GuildID) if cfg.DaysXPRemains > 30 { wg.Add(1) - go fn("Top full time", 10, -1, 0) + go fn(fmt.Sprintf("Top %d jours", cfg.DaysXPRemains), 10, -1, 0) } wg.Add(2) go fn("Top 30 jours", 5, 30, 1)