mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-19 16:33:36 +03:00
cool commit with cool things
This commit is contained in:
parent
d0d663d2bb
commit
e60ee447c0
4 changed files with 14 additions and 10 deletions
|
@ -253,11 +253,11 @@
|
|||
<value>оъмъомоъемъъео((((</value>
|
||||
</data>
|
||||
<data name="EventCancelled" xml:space="preserve">
|
||||
<value>движуха "{0}" отменен!</value>
|
||||
</data>
|
||||
<value>движуха "{0}" отменена!</value>
|
||||
</data>
|
||||
<data name="EventCompleted" xml:space="preserve">
|
||||
<value>движуха "{0}" завершен!</value>
|
||||
</data>
|
||||
<value>движуха "{0}" завершена!</value>
|
||||
</data>
|
||||
<data name="Ever" xml:space="preserve">
|
||||
<value>всегда</value>
|
||||
</data>
|
||||
|
|
|
@ -153,7 +153,9 @@ public class RemindCommandGroup : CommandGroup
|
|||
[RequireContext(ChannelContext.Guild)]
|
||||
[UsedImplicitly]
|
||||
public async Task<Result> ExecuteDeleteReminderAsync(
|
||||
[MinValue(0)] int index)
|
||||
[Description("Index of reminder to delete")]
|
||||
[MinValue(0)]
|
||||
int index)
|
||||
{
|
||||
if (!_context.TryGetContextIDs(out var guildId, out _, out var userId))
|
||||
{
|
||||
|
|
|
@ -64,6 +64,7 @@ public class SettingsCommandGroup : CommandGroup
|
|||
/// <summary>
|
||||
/// A slash command that lists current per-guild GuildSettings.
|
||||
/// </summary>
|
||||
/// <param name="page">The page number.</param>
|
||||
/// <returns>
|
||||
/// A feedback sending result which may or may not have succeeded.
|
||||
/// </returns>
|
||||
|
@ -75,7 +76,9 @@ public class SettingsCommandGroup : CommandGroup
|
|||
[Description("Shows settings list for this server")]
|
||||
[UsedImplicitly]
|
||||
public async Task<Result> ExecuteSettingsListAsync(
|
||||
[Description("Settings list page")] int page)
|
||||
[Description("Settings list page")]
|
||||
[MinValue(1)]
|
||||
int page)
|
||||
{
|
||||
if (!_context.TryGetContextIDs(out var guildId, out _, out _))
|
||||
{
|
||||
|
|
|
@ -346,7 +346,7 @@ public sealed class ScheduledEventUpdateService : BackgroundService
|
|||
IGuildScheduledEvent scheduledEvent, GuildData data, CancellationToken ct)
|
||||
{
|
||||
var currentUserResult = await _userApi.GetCurrentUserAsync(ct);
|
||||
if (!currentUserResult.IsDefined(out var currentUser))
|
||||
if (!currentUserResult.IsDefined(out _))
|
||||
{
|
||||
return Result.FromError(currentUserResult);
|
||||
}
|
||||
|
@ -359,11 +359,10 @@ public sealed class ScheduledEventUpdateService : BackgroundService
|
|||
}
|
||||
|
||||
var earlyResult = new EmbedBuilder()
|
||||
.WithSmallTitle(
|
||||
.WithDescription(
|
||||
string.Format(Messages.EventEarlyNotification, scheduledEvent.Name,
|
||||
Markdown.Timestamp(scheduledEvent.ScheduledStartTime, TimestampStyle.RelativeTime)), currentUser)
|
||||
Markdown.Timestamp(scheduledEvent.ScheduledStartTime, TimestampStyle.RelativeTime)))
|
||||
.WithColour(ColorsList.Default)
|
||||
.WithCurrentTimestamp()
|
||||
.Build();
|
||||
|
||||
if (!earlyResult.IsDefined(out var earlyBuilt))
|
||||
|
|
Loading…
Add table
Reference in a new issue