Compare commits

...

1 Commits

Author SHA1 Message Date
94c38b79b7 fix: Display correct timely reward 2025-05-11 01:39:50 +02:00

View File

@ -286,8 +286,8 @@ public partial class Gambling : GamblingModule<GamblingService>
var val = Config.Timely.Amount; var val = Config.Timely.Amount;
var inter = CreateRemindMeInteraction(period); var inter = CreateRemindMeInteraction(period);
var prepend = GetText(strs.timely(N(val), period));
var (newVal, msg) = await _service.GetAmountAndMessage(ctx.User.Id, val); var (newVal, msg) = await _service.GetAmountAndMessage(ctx.User.Id, val);
var prepend = GetText(strs.timely(N(newVal), period));
msg = prepend + "\n\n" + msg; msg = prepend + "\n\n" + msg;