add: timely now has a 3 letter password by default. Configurable via .conf gamb

This commit is contained in:
Kwoth
2024-10-31 11:48:09 +00:00
parent 0f6255947e
commit 474a1db41d
9 changed files with 181 additions and 99 deletions

View File

@@ -44,9 +44,6 @@ public static class UserXpExtensions
.CountAsyncLinqToDB()
+ 1;
public static void ResetGuildUserXp(this DbSet<UserXpStats> xps, ulong userId, ulong guildId)
=> xps.Delete(x => x.UserId == userId && x.GuildId == guildId);
public static void ResetGuildXp(this DbSet<UserXpStats> xps, ulong guildId)
=> xps.Delete(x => x.GuildId == guildId);