mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
- NoPublicBotAttribute will now be properly ignored when built with GlobalNadeko configuration
- Added ILogCommandsService which will have dummy implementation on public bot, this means Logging Commands will be present on public bot to pull up help etc - When .ve is enabled, NoPublicBot commands will show a nicer error message with link to selfhosting guide (thx ene) - Fixed xp gain and .xp command not working on new users - General cleanup
This commit is contained in:
@@ -14,9 +14,9 @@ namespace NadekoBot.Modules.Administration.Services
|
||||
//channelids where prunes are currently occuring
|
||||
private ConcurrentHashSet<ulong> _pruningGuilds = new ConcurrentHashSet<ulong>();
|
||||
private readonly TimeSpan twoWeeks = TimeSpan.FromDays(14);
|
||||
private readonly LogCommandService _logService;
|
||||
private readonly ILogCommandService _logService;
|
||||
|
||||
public PruneService(LogCommandService logService)
|
||||
public PruneService(ILogCommandService logService)
|
||||
{
|
||||
this._logService = logService;
|
||||
}
|
||||
|
Reference in New Issue
Block a user