1
Fork 0
mirror of https://gitlab.com/Kwoth/nadekobot.git synced 2024-10-02 20:13:13 +00:00

removed incompatible .c alias for config. Now its config/conf. .c is reserved for .crypto

This commit is contained in:
Kwoth 2021-05-19 11:52:21 +02:00
parent a4dbfaf478
commit de3d9ecbe3
2 changed files with 10 additions and 21 deletions

View file

@ -128,10 +128,10 @@ namespace NadekoBot.Modules.CustomReactions.Services
public Task OnReadyAsync()
=> ReloadInternal(_bot.GetCurrentGuildIds());
private Task OnCrsShouldReload(bool _)
=> ReloadInternal(_bot.GetCurrentGuildIds());
private ValueTask OnCrsShouldReload(bool _)
=> new ValueTask(ReloadInternal(_bot.GetCurrentGuildIds()));
private Task OnGcrAdded(CustomReaction c)
private ValueTask OnGcrAdded(CustomReaction c)
{
lock (_gcrWriteLock)
{
@ -141,10 +141,10 @@ namespace NadekoBot.Modules.CustomReactions.Services
_globalReactions = newGlobalReactions;
}
return Task.CompletedTask;
return default;
}
private Task OnGcrEdited(CustomReaction c)
private ValueTask OnGcrEdited(CustomReaction c)
{
lock (_gcrWriteLock)
{
@ -153,7 +153,7 @@ namespace NadekoBot.Modules.CustomReactions.Services
if (_globalReactions[i].Id == c.Id)
{
_globalReactions[i] = c;
return Task.CompletedTask;
return default;
}
}
@ -162,10 +162,10 @@ namespace NadekoBot.Modules.CustomReactions.Services
OnGcrAdded(c);
}
return Task.CompletedTask;
return default;
}
private Task OnGcrDeleted(int id)
private ValueTask OnGcrDeleted(int id)
{
lock (_gcrWriteLock)
{
@ -173,7 +173,7 @@ namespace NadekoBot.Modules.CustomReactions.Services
_globalReactions = newGlobalReactions;
}
return Task.CompletedTask;
return default;
}
public Task TriggerReloadCustomReactions()
@ -378,17 +378,7 @@ namespace NadekoBot.Modules.CustomReactions.Services
public async Task<bool> RunBehavior(DiscordSocketClient client, IGuild guild, IUserMessage msg)
{
// maybe this message is a custom reaction
CustomReaction cr;
var sw = Stopwatch.StartNew();
try
{
cr = TryGetCustomReaction(msg);
}
finally
{
sw.Stop();
_log.Info("Crs check in: {Ticks}", sw.ElapsedTicks);
}
var cr = TryGetCustomReaction(msg);
if (cr is null)
return false;

View file

@ -1012,7 +1012,6 @@ botconfigedit:
- bce
config:
- config
- c
- conf
configreload:
- configreload